0

セキュア ゾーンのログイン フォームがあります。これらは通常、処理された後、ユーザーはセキュア ゾーンのランディング ページである特定のページに移動します。ログインフォームを変更して、同じ方法でログに記録するようにしたいのですが、別のページにリダイレクトできるようにします。これを達成するためにjavascriptを使用するにはどうすればよいですか? これを行う理由は、このセキュア ゾーンにほぼ 3000 のサブスクライバーがあり、それらを別のセキュア ゾーンに複製する必要がないようにするためです。どんな助けでも大歓迎です。

html フォーム:

<form name="catseczoneform74513" onSubmit="return checkWholeForm74513(this)" method="post" action="https://redlakewalleye.worldsecuresystems.com/ZoneProcess.aspx?ZoneID=12369&amp;Referrer={module_siteUrl,true,true}&amp;OID={module_oid}&amp;OTYPE={module_otype}">
        <div class="form">
        <div class="item">
            <label for="SZUsername">Username</label><br />
            <input class="cat_textbox_small" type="text" name="Username" id="SZUsername" maxlength="255" />
        </div>
        <div class="item">
            <label for="SZPassword">Password</label><br />
            <input class="cat_textbox_small" type="password" name="Password" id="SZPassword" maxlength="255" autocomplete="off" />
        </div>
        <div class="item">
            <input type="checkbox" name="RememberMe" id="RememberMe" /><label for="RememberMe">Remember Me</label>
        </div>
        <div class="item">
            <input class="cat_button" type="submit" value="Log in" />&nbsp;<a href="/_System/SystemPages/PasswordRetrieveRequest">Lost password?</a>
        </div>
        </div>
        <script type="text/javascript" src="/CatalystScripts/ValidationFunctions.js"></script>
        <script type="text/javascript">
            //<![CDATA[
            function checkWholeForm74513(theForm){var why = "";if (theForm.Username) why += isEmpty(theForm.Username.value, "Username");if (theForm.Password) why += isEmpty(theForm.Password.value, "Password");if (why != ""){alert(why);return false;}theForm.submit();return false;}
            //]]>
        </script>
    </form>
4

2 に答える 2

2

JavaScript を使用してユーザーを別の場所にリダイレクトするには、次を使用します。

window.location.href = "http://www.example.com";

hereに記載されているように、別の方法は次のとおりです。

window.location.replace("http://stackoverflow.com");

1 つはリンクをクリックする動作をエミュレートし、もう 1 つは HTTP リダイレクトとして機能します。

于 2013-11-07T15:37:41.403 に答える
0

あなたが使用することができますdocument.location.href = "link";

于 2013-11-07T15:38:21.510 に答える