-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

这是因为您使用的是 a<button>而不是<input type="submit">. 您可以通过添加以下内容来解决此问题:

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

表格内的某处。这将“欺骗”浏览器并重新启用 Enter 作为快捷方式。

于 2012-04-25T03:09:57.653 回答