gpt4 book ai didi

javascript - 使用 javascript 将外部 .html 加载到 div 中

转载 作者:行者123 更新时间:2023-11-28 21:00:02 24 4
gpt4 key购买 nike

我正在尝试将外部 .htm 文件加载到主页上的 div,并且我使用了以下代码:

<a href="#file.htm" onclick="$('#content').load('file.htm')">Link</a>

它在 Firefox 中有效,但在 Chrome 和 IE 中无效。谁能帮我吗?

最佳答案

为什么不

html

<a href="file.htm" class="ajax">Link</a>

并添加脚本

<script type="text/javascript">
$(function(){
$('.ajax').click(function(e){
e.preventDefault();
$('#content').load( this.href );
});
});
</script>

这样你就可以为 #content 区域内加载的所有链接设置一个类 ajax 并处理所有这些链接..

<小时/>

会不会是因为你点击太快,jquery还没有加载,所以不起作用?

关于javascript - 使用 javascript 将外部 .html 加载到 div 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11278078/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com