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";

如此处所述,另一种方法如下:

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

第一个模拟单击链接的行为,另一个充当 HTTP 重定向。

于 2013-11-07T15:37:41.403 回答
0

您可以使用document.location.href = "link";

于 2013-11-07T15:38:21.510 回答