jquery实现静态html文件的include效果
直接调用jquery的get方法调用远程页面,代码就这样:
<script type="text/javascript" src="jquery-1.2.6.js"></script>
<script type="text/javascript">
$.get("top.html",function(data){
$("#top").html(data);
});
$.get("foot.html",function(data){
$("#foot").html(data);
});
</script>
<script type="text/javascript">
$.get("top.html",function(data){
$("#top").html(data);
});
$.get("foot.html",function(data){
$("#foot").html(data);
});
</script>
就这样把上面的代码加在<title></title>中就能做模板页面了,不过会有断码现象,乱码就两个原因造成的,一个代码的编码,一个就是文件的编码了,每个文件的两种编码格式都要统一,代码编码是我们可以自己指定的,一般不是GB2312就是utf-8,最好是 utf-8,因为文件的编码一般都是utf-8,统一代码的编码可以在<title>之前指定
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
http://blog.sina.com.cn/s/blog_8089f1da0100r778.html
相关推荐
EdwardSiCong 2020-11-23
85477104 2020-11-17
hhanbj 2020-11-17
81427005 2020-11-11
seoppt 2020-09-13
honeyth 2020-09-13
WRITEFORSHARE 2020-09-13
84483065 2020-09-11
momode 2020-09-11
85477104 2020-08-15
83510998 2020-08-08
82550495 2020-08-03
tthappyer 2020-08-03
84901334 2020-07-28
tthappyer 2020-07-25
TONIYH 2020-07-22
tztzyzyz 2020-07-20
83510998 2020-07-18
81463166 2020-07-17