1

这不是加载页面错误在哪里?,这是使用 jquery 版本 1.9.1 ,该页面 http://localhost/ReportsSec/MapNavigation.aspx包含谷歌地图 api 下面给出的错误:

刷新页面以查看在 F12 工具打开之前可能出现的消息。SCRIPT5009:“google”未定义 Default.aspx,第 116 行字符 1 SCRIPT257:由于错误 80020101 无法完成操作。jquery-1.9.1.js,第 602 行字符 4

 <!DOCTYPE html>
        <html>
    <head>
    <script type="text/javascript" src="js/jquery-1.9.1.min.js"></script>

    <script>
        $(document).ready(function () {
            $("button").click(function () {
                $("#div1").load("http://localhost/ReportsSec/MapNavigation.aspx");
            });
        });
    </script>
    </head>
    <body>

    <div id="div1" style="width:450px;height:450px"></div>
    <button>Get External Content</button>

    </body>
    </html>
4

2 回答 2

1

我认为问题可能是您需要一个 ajax mod 才能使用 jquery 加载外部页面.load()。试试这个:使用 JQuery 的跨域请求

然后您可以执行以下操作: $('html').load('http://google.com');

于 2013-03-21T17:07:30.803 回答
0

我认为这是您导入的 js 文件的问题。尝试一次

<script src="http://code.jquery.com/jquery-1.9.1.js"></script>


     $(document).ready(function () {

            $("#div1").load("http://localhost/ReportsSec/MapNavigation.aspx");

    });
于 2013-03-21T16:50:22.050 回答