我有一種情況,我想同時將表單數據發佈到2個不同的位置。我無法控制位置,它們是跨域的。 我在這裏發現了一篇以前的帖子,使用了一個iframe,現在我找不到,我已經註冊了。它每次提交給第一個,但第二個只提交25%的時間。我需要它在所有主要瀏覽器中更可靠地工作。嘗試使用Ajax,但無法讓它在IE中跨域嘗試在這個論壇中提出的許多解決方案。 謝謝。 埃德將表單提交到2個不同的網站第二次通過javascript
<form name="myForm" method="post" action="http://www.firstwebsite.com" onsubmit="return submit2nd()" >
<input type="email" name="email" value='' />
<input type="submit" name="submit" />
</form>
<script>
function submit2nd(){
var x=document.forms["myForm"]["email"].value;
var iframe = document.createElement("iframe");
var uniqueString = "asderwegthyuq123";
document.body.appendChild(iframe);
iframe.style.display = "none";
iframe.contentWindow.name = uniqueString;
var form = document.createElement("form");
form.target = uniqueString;
form.action = "http://www.secondwebsite.com";
form.method = "POST";
var input = document.createElement("input");
input.type = "hidden";
input.name = "email";
input.value = x;
form.appendChild(input);
document.body.appendChild(form);
form.submit();
return true;
}
</script>
感謝您的迴應rationalboss, 不確定如何實現您的解決方案,但我仍然需要去www.firstwebsite.com提交後,所以不會創建2個不可靠的提交表單,而不僅僅是一? Ajax將無法正常工作,因爲它需要在IE中工作,跨域,並且我無法修改目標。我花了4天時間嘗試了許多Ajax解決方案,其中沒有一個能夠在IE中使用。他們在Chrome和FF中工作正常。 – 2013-03-13 06:56:02
[JQuery適用於Internet Explorer。](http://jquery.com/browser-support/)。提交後,您可以通過使用'' – rationalboss 2013-03-13 07:53:06