我的代碼不會自動提交。我的代碼有什麼問題?我試圖通過iframe自動登錄遠程網站。這個代碼不會自動提交
<form id="login" target="frame" method="post" action="https://remote.com">
<input type="hidden" name="username" value="login" />
<input type="hidden" name="password" value="pass" />
</form>
<iframe id="frame" name="frame"></iframe>
<script type="text/javascript">
// submit the form into iframe for login into remote site
document.getElementById('login').submit();
// once you're logged in, change the source url (if needed)
var iframe = document.getElementById('frame');
iframe.onload = function() {
if (iframe.src != "https"//remote.com") {
iframe.src = "https://remote.com";
}
}
</script>
你不應該這樣做。 – Narf