我正在尝试使用jQuery加载网页,但收到此错误
网页错误详情
消息:权限被拒绝 行:3517 Char:4 代码:0 URI:http://localhost/js/jquery-1.3.2.js
这是我的代码
<script language="javascript" type="text/javascript" src="js/jquery-1.3.2.js"></script>
<script language="javascript" type="text/javascript">
$(document).ready(function(){
$('#test').load('http://wwww.yahoo.com');
});
</script>
<div id="test"></div>
由于 让
[编辑]
某些网址确实已打开,但图片未显示
答案 0 :(得分:0)
检查this post。它有一个解决你的问题的方法,但不幸的是你不能只用JS来做,因为你必须编写一个简单的代理来将请求传递出你的域。
答案 1 :(得分:0)
您在网址中使用了四个W wwww
,当然使用三个:
$('#test').load('http://www.yahoo.com');