jQuery怎么加载一个html页面到我指定的div里面

2025-04-05 18:53:25
推荐回答(5个)
回答1:

使用ajax。

参考代码:

$(function(){

$.ajax({

type:"POST",      url:"LoginLoadArticle.ashx",      

data: "type="+escape("最新公告") , 

success:function(msg){

$(".gonggao").html(msg);

      },      error:function(XMLHttpRequest, textStatus, thrownError){}

})

})

扩展资料:

xml:返回XML文档,可用JQuery处理。 

html:返回纯文本HTML信息;包含的script标签会在插入DOM时执行。 

script:返回纯文本JavaScript代码。不会自动缓存结果。除非设置了cache参数。注意在远程请求时(不在同一个域下),所有post请求都将转为get请求。 

json:返回JSON数据。 

jsonp:JSONP格式。使用SONP形式调用函数时,例如myurl?callback=?,JQuery将自动替换后一个“?”为正确的函数名,以执行回调函数。 

text:返回纯文本字符串。 

beforeSend:要求为Function类型的参数,发送请求前可以修改XMLHttpRequest对象的函数。

回答2:

使用ajax的load方法。

语法:

load(url,data,function(response,status,xhr))

具体代码:

扩展资料:

.load() 方法,与 $.get() 不同,允许我们规定要插入的远程文档的某个部分。这一点是通过 url 参数的特殊语法实现的。如果该字符串中包含一个或多个空格,紧接第一个空格的字符串则是决定所加载内容的 jQuery 选择器。

jQuery 使用浏览器的 .innerHTML 属性来解析被取回的文档,并把它插入当前文档。在此过程中,浏览器常会从文档中过滤掉元素,比如 , 或 <head> 元素。结果是,由 .load() 取回的元素可能与由浏览器直接取回的文档不完全相同。</p> <p>注释:由于浏览器安全方面的限制,大多数 "Ajax" 请求遵守同源策略;请求无法从不同的域、子域或协议成功地取回数据。</p> <p>参考资料:Jquery官方中文文档api--ajax load()</p></p> </div> </div> <div class="clear"></div> </div> <div class="wdhdnr"> <div class="huidanrtop"> <div class="wdhuidaxinx"> <div class="wdhuidaxm">回答3:</div> </div> </div> <div class="clear"></div> <div class="wdhuidanrmid"> <div class="zuijiacont"> <p><p>使用ajax。</p> <p>参考代码:<br></p> <p>$(function(){<br></p> <p>$.ajax({<br></p> <p>type:"POST",      url:"LoginLoadArticle.ashx",      </p> <p>data: "type="+escape("最新公告") , </p> <p>success:function(msg){</p> <p>$(".gonggao").html(msg);<br></p>      },      error:function(XMLHttpRequest, textStatus, thrownError){}<p>})<br></p> <p>})</p> <p><img loading="lazy" class="ikqb_img" src="/picurl?url=https%3A%2F%2Fiknow-pic.cdn.bcebos.com%2F8694a4c27d1ed21b41156cb3a06eddc450da3f83%3Fx-bce-process%3Dimage%252Fresize%252Cm_lfit%252Cw_600%252Ch_800%252Climit_1%252Fquality%252Cq_85%252Fformat%252Cf_auto" esrc="https://iknow-pic.cdn.bcebos.com/8694a4c27d1ed21b41156cb3a06eddc450da3f83"></p> <p><strong>扩展资料:</strong></p> <p>xml:返回XML文档,可用JQuery处理。 <br></p> <p>html:返回纯文本HTML信息;包含的script标签会在插入DOM时执行。 <br></p> <p>script:返回纯文本JavaScript代码。不会自动缓存结果。除非设置了cache参数。注意在远程请求时(不在同一个域下),所有post请求都将转为get请求。 <br></p> <p>json:返回JSON数据。 <br></p> <p>jsonp:JSONP格式。使用SONP形式调用函数时,例如myurl?callback=?,JQuery将自动替换后一个“?”为正确的函数名,以执行回调函数。 <br></p> <p>text:返回纯文本字符串。 <br></p> <p>beforeSend:要求为Function类型的参数,发送请求前可以修改XMLHttpRequest对象的函数。</p></p> </div> </div> <div class="clear"></div> </div> <div class="wdhdnr"> <div class="huidanrtop"> <div class="wdhuidaxinx"> <div class="wdhuidaxm">回答4:</div> </div> </div> <div class="clear"></div> <div class="wdhuidanrmid"> <div class="zuijiacont"> <p><p>用jquery ajax 可以实现,把a.html里面的某一部份的内容加载到b.html的一个div里。</p> <p>比如:加载a.html里面的<div id=“row"></div>这个div里面的所有内容加载到b.html的这个div里<div id="content"></div></p> <p>假设 a.html 和b.html在同一目录:</p> <p><script > </p> <p>$(document).ready(function() { </p> <p>bodyContent = $.ajax({ </p> <p>url: "b.html",</p> <p>global: false, </p> <p>type: "POST", </p> <p>data: ({ </p> <p>id: this.getAttribute('row') </p> <p>}),</p> <p>dataType: "html",</p> <p>async: false,</p> <p>success: function(msg) {</p> <p>alert(msg);</p> <p>}</p> <p>})</p> <p>});</p> <p></script></p> <p><img loading="lazy" class="ikqb_img" src="/picurl?url=https%3A%2F%2Fiknow-pic.cdn.bcebos.com%2F9e3df8dcd100baa10ad082c74a10b912c9fc2eca%3Fx-bce-process%3Dimage%252Fresize%252Cm_lfit%252Cw_600%252Ch_800%252Climit_1%252Fquality%252Cq_85%252Fformat%252Cf_auto" esrc="https://iknow-pic.cdn.bcebos.com/9e3df8dcd100baa10ad082c74a10b912c9fc2eca"></p> <p><strong>扩展资料:</strong></p> <p>jQuery使用load()方法载入另外一个网页文件内的指定标签内容到div标签的方法</p> <p><!DOCTYPE html></p> <p><html></p> <p><head></p> <p><script src="js/jquery.min.js"></p> <p></script></p> <p><script></p> <p>$(document).ready(function(){</p> <p>$("button").click(function(){</p> <p>$("#div1").load("demo_test.txt #p1");</p> <p>});</p> <p>});</p> <p></script></p> <p></head></p> <p><body></p> <p><div id="div1"><h2>使用jQuery AJAX改变此处内容</h2></div></p> <p><button>改变外部内容</button></p> <p></body></p> <p></html></p> <p>参考资料:百度百科:jQuery</p></p> </div> </div> <div class="clear"></div> </div> <div class="wdhdnr"> <div class="huidanrtop"> <div class="wdhuidaxinx"> <div class="wdhuidaxm">回答5:</div> </div> </div> <div class="clear"></div> <div class="wdhuidanrmid"> <div class="zuijiacont"> <p><pre t="code" l="html"><div id="moon"></div><br><script><br>$( "#moon" ).load( "demo2.html", function( response, status, xhr ) {<br>  $('#moon').html(response);<br>});</pre> <p> 只能加载本地文件,加载时把文件路径写正确</p></p> </div> </div> <div class="clear"></div> </div> </div> </div> <div class="wendaright"> <div class="wdluluerwema"> <div class="wdxgwttop">相关问答</div> <div class="wdxgwtnr"> </div> <div class="clear"></div> </div> <!-- 其他随机问答['id'=>alphaID($like['zid'])] --> <div class="wdluluerwema"> <div class="wdxgwttop">最新问答</div> <div class="wdxgwtnr"> <div class="wdxgwtcont"> <div class="wdxgtitle"><a href="https://191i.com/i/2052241382192058187.html">手机AMI是什么意思</a></div> </div> <div class="wdxgwtcont"> <div class="wdxgtitle"><a href="https://191i.com/i/363689679155146892.html">充电宝有电 但是给手机充电充1% 就电源不亮了 然后用电源冲一下充电宝 充电宝的电源就</a></div> </div> <div class="wdxgwtcont"> <div class="wdxgtitle"><a href="https://191i.com/i/1367146098833684979.html">2015邮政银行河南省分行面试通知已经发了吗?</a></div> </div> <div class="wdxgwtcont"> <div class="wdxgtitle"><a href="https://191i.com/i/1924945998009520467.html">红薯条上面白色的东西可以吃吗</a></div> </div> <div class="wdxgwtcont"> <div class="wdxgtitle"><a href="https://191i.com/i/565166038180521844.html">gmod的“尸体保留”在哪里?</a></div> </div> <div class="wdxgwtcont"> <div class="wdxgtitle"><a href="https://191i.com/i/1047229957598403259.html">海尔热80升热水器一天需要多少度电</a></div> </div> <div class="wdxgwtcont"> <div class="wdxgtitle"><a href="https://191i.com/i/246522234556832204.html">用电脑播放学习强国里的空中课堂老师讲的话传出声音和口行对不上,什么原因?</a></div> </div> <div class="wdxgwtcont"> <div class="wdxgtitle"><a href="https://191i.com/i/811462860726690292.html">知母憾之不已的憾解释</a></div> </div> <div class="wdxgwtcont"> <div class="wdxgtitle"><a href="https://191i.com/i/1450048637059430500.html">2o16年岳阳市考录公务员体检公示结果</a></div> </div> <div class="wdxgwtcont"> <div class="wdxgtitle"><a href="https://191i.com/i/1381664853560022780.html">视频转换格式的时候CPU问题</a></div> </div> </div> </div> </div> <div class="clear"></div> <div class="footer"> <!-- 移动底部导航 --> <div class="fanhuitop"><a href="#top" ref="nofollow"><img src="https://191i.com/static/old/img/fhtop.png" title="返回顶部"></a></div> <div class="dibu"> <div class="dibu"> </div> </div> <div class="banquan"> <p>内容全部来源于网络收集,如有侵权,请联系网站删除:QQ:24596024</p> </div> </div> </div> </div> <script> var _hmt = _hmt || []; (function() { var hm = document.createElement("script"); hm.src = "https://hm.baidu.com/hm.js?530214f19d678452e8fa4098a936ce38"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(hm, s); })(); </script> </body> </html>