我不知道为什么 jquery ajax 加载函数没有响应。当我单击应该强制 div 加载 .txt 文件内容的链接时,除了我得到指示加载函数成功运行的警报窗口之外,什么都没有发生。这是代码:
主模板.html
<div class="contentWrapper">
<table>
<thead>
<tr>
<th>
Location
</th>
<th>
Account
</th>
<th>
Industry
</th>
</tr>
</thead>
<tbody>
<tr id="Row1">
<td>
foo
</td>
<td>
foo
</td>
<td>
foo
</td>
</tr>
<tr id="Row2">
<td>
foo
</td>
<td>
foo
</td>
<td>
foo
</td>
</tr>
<tr id="Row3">
<td>
foo
</td>
<td>
foo
</td>
<td>
foo
</td>
</tr>
<tr id="Row4">
<td>
foo
</td>
<td>
foo
</td>
<td>
foo
</td>
</tr>
</tbody>
</table>
<!-- <button>Click Me</button> -->
</div>
jQuery 文件:
$(document).ready(function () {
$("[id^=Row]").click(
function () {
$(".contentWrapper").load('foo.txt', function () { alert("Load was performed successfully")});
}
);
});
foo.txt:
<h2>jQuery and AJAX is FUN!!!</h2>
<p id="p1">This is some text in a paragraph.</p>
我在这里很沮丧。我使用谷歌浏览器作为我的浏览器。