旧的JavaScript功能在FF和IE中工作,但在Chrome和Safari中没有

时间:2013-03-13 19:46:57

标签: javascript google-chrome safari

我有此代码,我希望它可以在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(); };


    // ]]>

0 个答案:

没有答案