如何使用jquery加载加载html?试过这个。但工作。你可以帮助吗
<h1>Simple Ajax Demo</h1>
<p id="hint">This is a simple example of Ajax loading.</p>
<p><img src="sky.jpg" alt="Cloudy Sky"></p>
-------------------------
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>jQuery load() Demo</title>
<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("button").click(function(){
$("#box").load("test-content.html");
});
});
</script>
</head>
<body>
<div id="box">
<h2>Click button to load new content inside DIV box</h2>
</div>
<button type="button">Load Content</button>
</body>
</html>
-----
jquery post方法
$("button").click(function(){
$.get("demo_test.asp", function(data, status){
alert("Data: " + data + "\nStatus: " + status);
});
});
$.ajax({
type: "POST",
url: url,
data: data,
success: success,
dataType: dataType
});
$.post( "example.php", function() {
alert( "success" );
})
.done(function() {
alert( "second success" );
})
.fail(function() {
alert( "error" );
})
.always(function() {
alert( "finished" );
});
jquery post方法: $ .post()的第一个参数是我们想要请求的URL(“demo_test_post.asp”)。
然后我们传入一些数据与请求(姓名和城市)一起发送。
“demo_test_post.asp”中的ASP脚本读取参数,处理它们并返回结果。
第三个参数是回调函数。第一个回调参数保存所请求页面的内容,第二个回调参数保存请求的状态。
dragn drop:
<!DOCTYPE HTML>
<html>
<head>
<script>
function allowDrop(ev) {
ev.preventDefault();
}
function drag(ev) {
ev.dataTransfer.setData("text", ev.target.id);
}
function drop(ev) {
ev.preventDefault();
var data = ev.dataTransfer.getData("text");
ev.target.appendChild(document.getElementById(data));
}
</script>
</head>
<body>
<div id="div1" ondrop="drop(event)" ondragover="allowDrop(event)"></div>
<img id="drag1" src="img_logo.gif" draggable="true"
ondragstart="drag(event)" width="336" height="69">
</body>
</html>
如何使用jquery加载加载html?试过这个。但工作。你可以帮助吗
答案 0 :(得分:1)
很可能是因为找不到你的test-content.html
,因为它被放置在另一个文件夹中,或者因为你错过了它的一部分路径。
当我测试您的代码并尝试使用:$("#box").load("https://raw.githubusercontent.com/cbracco/html5-test-page/master/README.md");
时
然后就可以了。
代码的工作演示
$(document).ready(function() {
$("button").click(function() {
$("#box").load("https://raw.githubusercontent.com/cbracco/html5-test-page/master/README.md");
});
});
&#13;
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div id="box">
<h2>Click button to load new content inside DIV box</h2>
</div>
<button type="button">Load Content</button>
&#13;
答案 1 :(得分:1)
我认为这是您引用其他页面的方式。如果“test-content.html在同一文件夹中,您可以使用以下内容:
$("#box").load("./test-content.html");
以下是有关HTML文件路径的更多信息,如果您认为这可能是问题并且仍然遇到问题: