Bootstrap提交按钮没有反应

时间:2015-02-24 13:21:01

标签: php twitter-bootstrap submit

我似乎无法在Chrome或IE中使用此代码。无论什么时候提交'单击按钮,似乎没有任何事情发生。 script.php文件包含一个在SQL数据库中插入电子邮件地址的脚本。

我现在已经在stackoverflow和网络的其余部分搜索了三个小时,没有任何结果。我真的希望你能在这里帮助我

<!--e-mail form-->
<form role="form" method="POST" action="script.php">
    <div class="form-group">
        <label for="email">email</label>
        <input type="email" name="email" class="form-control" id="email" placeholder="E-mail adress" required/>
    </div>
    <div class="form-group">
        <button type="submit" class="btn btn-default">Submit</button>   
    </div>                  
</form>

如果你想看到IRL:co-searching.be

2 个答案:

答案 0 :(得分:0)

contact_me.js(jqBootstrapValidation)中有错误。查看控制台日志。

答案 1 :(得分:0)

这不是bootstrap的问题。您的表单提交行为正在通过javascript在名为contact_me.js的脚本中截获。

这个剧本应该完成什么,我不知道,但你可能想要检查一下。例如,你有这个脚本的第11行

var name = $("input#name").val()

有效地读取了我在您的网站中看不到的输入字段的值。请考虑不要将不必要的脚本链接到您的页面。