这是我对htmlpage1.html
文件的Ajax调用:
$(document).ready(function () {
$("button").click(function () {
$("#html").load("htmlpage1.html", function (data) {
alert(data);
});
});
});
我的htmlpage1.html包含代码:
<body>
<div id="div2">Hi</div>
</body>
在通话结束时,我收到一个空警报框。我必须得到“嗨”作为输出。我在做什么错误?
答案 0 :(得分:0)
Check like this
If you are using Chrome,
press F12. A DevTools window will appear, click on the Network Panel. Now click the button.
Network Panel will show the ajax call in it.
In your case, under name/Path in right-bottom side of panel, there will be page named "htmlpage1.html".
Click on it. On the right side of panel click in the Response or Preview.
The response will be shown there.
答案 1 :(得分:0)
我已将脚本更改为
$(document).ready(function () {
$("#html").load("htmlpage1.html", function (data) {
console.log(data);
});
});
现在它在所有浏览器中运行良好。我认为问题出在按钮点击上。每个浏览器都以不同的方式点击按钮。如果有人知道要解决问题,请提出您的解决方案。