嘿伙计们,我试图让以下人员继续工作......
<!DOCTYPE html>
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script>
$(document).ready(function() {
$("test").click(function() {
$("#div1").load("demo_test.txt");
});
});
</script>
</head>
<body>
<div id="div1">
<h2>Let jQuery AJAX Change This Text</h2>
</div>
<a id="test" href="#">Get External Content</a>
<br>
<a id="google" href="http://www.google.com/">Google</a>
</body>
</html>
&#13;
目前它还没有运行,但是如果我删除了Google系列,它就能运行。还有别的东西我不见了吗?谢谢!
答案 0 :(得分:4)
将您的jQuery点击处理程序更改为:
$("#test").click(function() {
我在#
前添加了test
,以正确选择您的锚标记。