当前位置: 代码迷 >> Web前端 >> Jquery读取当地文件内容
  详细解决方案

Jquery读取当地文件内容

热度:125   发布时间:2012-10-15 09:45:25.0
Jquery读取本地文件内容
$("#one a").css("cursor", "pointer").click(function () {
	$.post("course/popular/content1.html",null,function(data){
		alert(data);//这里data为content1.html文件里的内容
	});
});
  相关解决方案