iframe同源策略返回iFrame

时间:2016-10-21 22:32:20

标签: javascript jquery iframe browser same-origin-policy

我在我的客户端网站上有这个iFrame,它显示了来自不同来源的页面。所以同源政策开始了。

我想要做的是在视口中有一个按钮返回iFrame,但显然浏览器不允许这样做。

我正在使用此代码:

#include <stdio.h>
#include <string.h>

int main()
{
    char s[1000]; //Enter the maximum number of digits you expect as array size
    printf("Please enter number: ");
    scanf("%s", s);
    while(strlen(s)!=7)
    {
        printf("%d\n", strlen(s));
        printf("You can use only 7 digits numbers\n");
        scanf("%s", s);
    }
    return 0;
}

但它会出现预期的错误。

理想的解决方案是以某种方式实现此后退按钮,我无法控制跨源页面。

谢谢

0 个答案:

没有答案