<!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页面运行它时它会拒绝。