gpt4 book ai didi

javascript - jquery.load 函数

转载 作者:行者123 更新时间:2023-12-03 08:38:13 25 4
gpt4 key购买 nike

我正在学习如何在客户端加载和修改 Web 内容,而无需页面加载和回发。

我想将 Controls/content.html 的内容加载到 div 中,就像我在多个示例中看到的那样:

这是 div 和按钮:

<input type="button" id="btnHtm" onclick="Content()" name="Menu" value="HtmAppear" />
<div id="htmlCont"></div>

内容如下:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
</head>
<body>
<h4> HELO </h4>
</body>
</html>

这是文件路径:

, enter image description here

编辑:删除其他尝试

这是我的第四次尝试:

<script language="javascript" type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js" />

<script language="javascript" type="text/javascript" >

$(document).ready(function content() {
$('#htmlCont').load("Controls/content.html");
});

</script>

最佳答案

您的选择器需要一个#。试试这个:

<script language="javascript" type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>

<script>
$(document).ready(function() {
$('#htmlCont').load("Controls/content.html");
});

</script>

关于javascript - jquery.load 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33132577/

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