Javascript ';X-Frame-Options';至';SAMEORIGIN';。错误

Javascript ';X-Frame-Options';至';SAMEORIGIN';。错误,javascript,jquery,html,cross-domain,Javascript,Jquery,Html,Cross Domain,我得到了这个错误 Refused to display 'https://www.google.com.au/?gfe_rd=cr&ei=uPilVOfREaGN8QfsvIGABQ&gws_rd=ssl' in a frame because it set 'X-Frame-Options' to 'SAMEORIGIN'. 我制作了一个html5广告并上传到我的广告服务器上,该服务器生成了一个脚本,我将该脚本放在页面上测试广告。该页面将在iframe中加载广告 我有一个非常

我得到了这个错误

Refused to display 'https://www.google.com.au/?gfe_rd=cr&ei=uPilVOfREaGN8QfsvIGABQ&gws_rd=ssl' in a frame because it set 'X-Frame-Options' to 'SAMEORIGIN'.
我制作了一个html5广告并上传到我的广告服务器上,该服务器生成了一个脚本,我将该脚本放在页面上测试广告。该页面将在iframe中加载广告

我有一个非常简单的链接,可以在我的原始索引页面中打开google.com页面,但是我在测试页面中遇到了这个错误

  <div id="container">
        <div id="ad" class="collapsed">
        </div>
        <div id="left_panel" >  <a href="https://www.facebook.com/owais.ahmed.96" id="example">Testing!</a>
        </div>
        <div id="right_panel"  ></div>
    </div>


您试图在另一个域上打开google,但是google页面上的标题设置为相同的来源,例如相同的域

另请参见此相关问题: