-5

http://agentnet.propertyguru.com.sg/を見ていただけますか?を押しenterてもフォームが送信されず、送信を妨げている原因が見つかりません。

ソースからすべての Javascript ファイルを見つけることができます。

     <form action="destination" method="POST">
    <fieldset>
        <p class="instructions">Please enter your login id and password</p>
        <br />
        <label for="userid">User id:</label>
        <input type="text" name="userid" value="{$process->data.userid}" class="inputfield">
        <br />
        <label for="password">Password:</label>
        <input type="password" maxlength="32" name="password" class="inputfield">
        <br />

        <input name="submit" type="submit" class="button" value="Login" />
    </fieldset>

     </form>
4

1 に答える 1

2

<button>ではなくを使用しているためです<input type="submit">。これを修正するには、次を追加します。

<input type="submit" style="display: none" />

フォーム内のどこか。これにより、ブラウザが「だまされ」、ショートカットとして Enter が再び有効になります。

于 2012-04-25T03:09:57.653 に答える