jQuery Include HTML、插入html、jquery替代iframe

jQuery能做到的比iframe连接另一个网页html內容來的活用,使用css做样式变化,也较有弹性。再次比较sp include 和 php include 这样的方式无需使用以上asp和php服务器就能达到你想要的include html

下列程式变化更加入了导航(Menu list)做连接的切换,分別使用jquery include
三个html网页(a.html、 b.html、c.html)。
希望这样的方式能为您带來好的帮助。








$(document).ready(function(){ 
$.get("a.html",function(data){ //初始將a.html include div#iframe
$("#iframe").html(data);
});
$(function(){
$('.list-side li').click(function() {
// 找出 li 中的超链接 href(#id)
var $this = $(this),
_clickTab = $this.find('a').attr('target'); // 找到超链接a中的targer标签值
$.get(_clickTab,function(data){
$("#iframe").html(data);
});
})
})
});

你可能感兴趣的:(jquery,html,javascript,php)