Jquery .load函数未按预期工作

时间:2013-08-01 14:07:30

标签: jquery

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

1 个答案:

答案 0 :(得分:3)

都能跟得上!您无法使用JavaScript从远程网站加载页面。这违反了Same Domain Policy