因此,我尝试将外部文件中的纯文本加载到页面中,并且标题中始终出现错误。我究竟做错了什么?(我完全按照教程学习!)谢谢。
的HTML
<html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.0/jquery.min.js"></script> <script src="ajax.js"></script> </head> <body> <input id="button" type="button" value="Load" /> <div id="content"></div> </body> </html>
jQuery查询
$("#button").click(function(){ $.ajax({ url:"AjaxRequest.html", success:function(data) { $("#content").html(data); } }); });
编辑:显然没有成功。不知道为什么,文件就在它旁边。
尝试指定一个dataType:
$("#button").click(function(){ $.ajax({ url:"AjaxRequest.html", dataType:'html', success:function(data) { $("#content").html(data); } }); });