我有此代码,我希望它可以在Chrome和Safari中使用。它在Firefox和Interent Explorer上运行良好。
这是它的工作原理:我有一个表单需要在两个目的地提交。
// <![CDATA[
function OnButton1()
{
document.Form1.action = "destination1.php";
//document.Form1.target = "_self"; // Open in a new window
document.Form1.submit(); // Submit the page
return false;
}
function OnButton2()
{
document.Form1.action = "php/mail.php";
document.Form1.target = "_blank"; // Open in a new window
document.Form1.submit(); // Submit the page
return false;
}
window.onunload = function() { OnButton1(); };
// ]]>