我正在尝试学习AJAX,并且在W3School上列出了示例,但是当我将节点js设置为服务器并尝试更改我的html的DOM时,它无法正常工作。
这是在我按下按钮之前。
这是在我按下按钮之后。
以下示例列出: enter link description here
我的代码:
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("button").click(function(){
$("#div1").load("demo_test.txt");
});
});
</script>
</head>
<body>
<div id="div1"><h2>Let jQuery AJAX Change This Text</h2></div>
<button>Get External Content</button>
</body>
</html>