js加载html内容,ajax,javascript,jquery
发布网友
发布时间:2022-04-21 16:21
我来回答
共2个回答
热心网友
时间:2022-04-21 17:51
a.html 部分代码:
<html>
...
<input type="button" id="load" value="Load">
<div id="content"></div>
...
<script>
$(function(){
$("#load").click(function(){
$.post("b.html",function(data){
$("#content").html(data)
})
})
})
</script>
</html>
b.html 部分代码
<html>
....
<h1>hello</h1>
....
</html>