码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2016-01-26 22:08:41      阅读:282      评论:0      收藏:0      [点我收藏+]

标签:

不使用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引入其他页面的方法

标签:

原文地址:http://www.cnblogs.com/softwhy/p/5161640.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!