不使用iframe引入其他页面的方法

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了不使用iframe引入其他页面的方法相关的知识,希望对你有一定的参考价值。

不使用iframe引入其他页面的方法:
大家知道iframe可以引入外部页面,这个自然很简单,这里就不多介绍了,其实还有一种其他的方式可以引入其他页面,废话不多说,直接看代码:

 

<script type="text/javascript"> 
$(document).ready(function(){ 
  $("#content").load("iframe.html"); 
}); 
</script> 
</head>
<body> 
<div id="content"></div>
</body>

 

以上代码就可以实现我们的要求,话不用多说,一看就明白了。
load()函数可以参阅jQuery的load()方法一章节。 

原文地址是:http://www.softwhy.com/forum.php?mod=viewthread&tid=13247

更多内容可以参阅:http://www.softwhy.com/jquery/

 

以上是关于不使用iframe引入其他页面的方法的主要内容,如果未能解决你的问题,请参考以下文章