jquery实现静态html文件的include效果

直接调用jquery的get方法调用远程页面,代码就这样:

< script  type ="text/javascript"  src ="jquery-1.2.6.js" ></ script >

jquery实现静态html文件的include嵌入效果
< script  type ="text/javascript" >
jquery实现静态html文件的include嵌入效果$.get(
"top.html",function(data){
$(
"#top").html(data);
 }
);

jquery实现静态html文件的include嵌入效果$.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

你可能感兴趣的:(include)