使用AJAX将外部内容加载到div中不起作用?

时间:2013-06-18 07:22:42

标签: jquery html

我正在尝试将外部内容加载到div标签中,但它显示的错误是这样的" Access-Control-Allow-Origin不允许使用null。"

但是当我在firefox中运行它的部分运行时。请告诉我可能的解决方案。

HTML

<div id="page">
    <h2 align="center">Welcome</h2>     
 </div>

AJAX

<script type="text/javascript">
    $(document).ready(function(){

          $('#1').click(function(){
            $("#page").load('content.html');
          });

          $('#2').click(function(){
           $("#page").load('content1.html');
          });

          $('#3').click(function(){
           $("#page").load('content2.html');
          });           

          $('#4').click(function(){
           $("#page").load('content3.html');
          });
    });             
</script>   

0 个答案:

没有答案