输入密钥不提交表单

时间:2012-04-25 03:05:21

标签: jquery javascript-events form-submit

当我按回车键时,你能看一下http://agentnet.propertyguru.com.sg/吗,表格没有提交,我找不到阻止它发生的事情

您可以从源

找到所有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>

由于

1 个答案:

答案 0 :(得分:2)

这是因为您使用的是<button>而不是<input type="submit">。您可以通过添加:

来解决此问题
<input type="submit" style="display: none" />

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