这不是加载页面错误在哪里?,这是使用 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>