<!DOCTYPE html>
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script>
$(document).ready(function()
{
$("button").click(function()
{
$("#div1").load("http://w3schools.com/jquery/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>
前面的代码是我尝试在浏览器中运行的 W3Schools 示例。虽然它适用于 W3schools 窗口,但当我尝试从我的 html 页面运行它时它会拒绝。