自动在第三方网站中填写详细信息

时间:2015-10-23 23:34:13

标签: javascript jquery html iframe cors

我有一个包含iframe的页面(显示第三方网站)。点击我页面上的按钮,我输入的用户名应该从我的iframe进入第三方网站。我已经尝试了一段时间并阅读了'同源策略' ,因此一直在尝试使用' CORS(跨源资源共享) )&#39 ;.我不知道是否允许任何尝试,但这是我迄今为止所做的。

我不知道如何从这里开始。

<iframe name="ifr" id="ifr" height="200" width="200" src="https://somethirdPartyWebsite.com"/> </iframe><br/>
<input type="submit" id="submit" onclick="validate()" />
<script type="text/javascript">
function validate(){
    var request = createCORSRequest("get", "https://ala.kcpl.com/ala/mainLogin.cfm");
    alert("request-->"+request);
    if (request){
        request.onload = function() {
            alert("In onload...");
        };
        request.onreadystatechange = stateChanged();
        request.send();
    }
}

function createCORSRequest(method, url){
    var xhr = new XMLHttpRequest();
    if ("withCredentials" in xhr){
        xhr.open(method, url, true);
    } else if (typeof XDomainRequest != "undefined"){
        xhr = new XDomainRequest();
        xhr.open(method, url);
    } else {
        xhr = null;
    }
    return xhr;
}

function stateChanged(){
    alert("State Changed..");
}

**输出:**在IE中,我收到警报(&#34;请求 - &gt;&#34;),警报(&#34;状态已更改&#34;),警报(&#34;在加载&#34;)。

在Firefox中,我会收到警报(&#34;请求 - &gt;&#34;),警报(&#34;状态已更改&#34;)。

问题:我要从中得出什么结论以及如何在第三方网站的文本字段中设置值,该网站存在于iframe ifr < /强>

我想我需要做一些像

这样的事情
$("#ifr").contents().find('#inputUsername').val()="ValueToEnter".

不熟悉UI编码,请不要皱眉:)

1 个答案:

答案 0 :(得分:2)

你不能。同源政策不允许这样做。

CORS应该在服务器端设置,它不是你可以配置客户端的东西。