提交按钮在html5中不起作用

时间:2015-10-22 20:58:13

标签: html5

我有以下提交按钮,不带我去search.php。请指导我有什么问题。

<div class="row" style="margin-top:80px;">
    <form class="form-signin" id="Form1" action="search.php" method="post"> 

    <div class=" col-xs-12" style="float:left;display:inline;">
      <div class="ui-widget">
        <label for="city">City: </label>
        <input id="city">
      </div>
      <button type="button" class="btn btn-default"  type="submit">Search</button> 
    </div>
    </form>
</div>

1 个答案:

答案 0 :(得分:3)

<button type="button" .... type="submit">Search</button> 

您已定义type两次。删除你不想要的那个。