我怎么知道网站是否接受iframe?

时间:2016-03-18 21:47:20

标签: javascript html5 http iframe http-headers

我正在寻找一种方法来检查网站是否接受iframe(可能通过{{1}}?)但我甚至无法在客户端阅读。

如何检查网站是否允许客户端使用?

2 个答案:

答案 0 :(得分:0)

您可以使用选项“X-Frame-Options”从网址中获取标题 这将返回DENYSAMEORIGINALLOW-FROM

答案 1 :(得分:0)

如果您尝试从其他域中加载iframe中的网址,则可以尝试这样的操作。

//get the iframe object
var iframe = document.getElementById('Frame');


var iframeDocument;


    try{

        //cross browser solution to get the iframe document
        //of the iframe
        iframeDocument = iframe.contentDocument || iframe.contentWindow.document;

    }
    catch(error){

        alert(error);

    }