在jQuery中将数据加载到DIV中

时间:2011-10-08 19:45:58

标签: jquery html

我尝试了jQuery get函数并编码如下。我的下面的代码出了什么问题?它不起作用。

<style type="text/css">
<!--
#Layer1 {
    position:absolute;
    width:200px;
    height:115px;
    z-index:1;
}
-->
</style>
<div id="Layer1"> </div>
<script type="text/javascript">
    jQuery.get('http://google.com/', null, function(data)
    {$('#Layer1').append(data);
}, 'html');
</script>

1 个答案:

答案 0 :(得分:2)

您正试图从a different origin获取数据,出于安全原因这是不允许的。