我正在使用 WordPress 并使用 jQuery fancyBox来显示 YouTube 视频,但出现此错误:
XMLHttpRequest cannot load http://www.youtube.com/embed/L9szn1QQfas?autoplay=1. Origin http://localhost is not allowed by Access-Control-Allow-Origin.
我jQuery code
在footer.php中添加了波纹管
$(document).ready(function() {
$(".fancybox").fancybox();
});
并在我的帖子中添加了下面的 html 代码。
<a class="fancybox fancybox.iframe" href="http://www.youtube.com/embed/L9szn1QQfas?autoplay=1">
<img class="alignleft size-thumbnail wp-image-583" alt="small-screen-youtube" src="http://localhost/example/wp-content/uploads/2013/10/small-screen-youtube-150x150.png" width="150" height="150" />
</a>
这个问题要了我的命:(
有什么想法或建议吗?谢谢。