我试图找出该功能load()
在 Chrome 和 Firefox 中不起作用的问题。使用 Internet Explorer,它运行良好。
我有一个 WampServer。
在 Chrome 中,我收到错误:
Access-Control-Allow-Origin 不允许 Origin null
我把文件放在本地服务器上,它是在线的。我可以访问图像,请参阅代码。但是有什么问题load()
呢?
<body>
here is a image
<img src="/wamp/www/testing/baby2.jpg" width="100px" height="200px"></img>
<ul id="aj">
<li><a href="/wamp/www/testing/celeb1.html">One</a></li>
<li><a href="/wamp/www/testing/celeb2.html">Two</a></li>
<li><a href="/wamp/www/testing/celeb3.html">Three</a></li>
</ul>
<br>
<div id="desc">
</div>
<script>
$(document).ready(function(){
$('#aj a').click(function(){
var v= $(this).attr('href');
$('#desc').load(v);
return false;
});
});//ready
</script>
</body>
提前致谢。