1

我正在使用下面的代码将 blogspot 文章动态加载到 div 中,但我没有机会让它工作。我只想加载 BlogSpot 文章。其他页面加载正常

谁能帮我吗?

这是我的代码:

在关闭头部之前:

<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.0/jquery.min.js"></script> 
<script type="text/javascript">

jQuery(function(){  

jQuery('#pagecontainer').load('http://thesecretrealtruth.blogspot.com/2013/07/blog-post_9623.html', function(){alert('Content Successfully Loaded.')} );


});
</script>

在正文标签中:

<div id="pagecontainer" style="width:300px; height:250px;"></div>
4

1 回答 1

0

您不能从其他域加载内容。更多信息在这里

于 2013-07-11T17:32:00.793 回答