我有兩個表單在頁面上提交都做同樣的事情。兩個表格在同一頁上提交,只有第一個工作。 JQuery
一個在工具欄/導航欄上,另一個在主頁面上。
我遇到的問題是,一旦我在工具欄上添加表單時,主頁面上的表單在觸發時從不具有搜索值,如果我在工具欄中註釋掉該表單,那麼主頁面就具有該值。
//Toolbar submit
<form>
<div class="input-append">
<input type="text" class="span3" placeholder="Enter name" />
<button type="submit" class="btn-u">Go</button>
</div>
</form>
// Main page submit
<form class="form-inline margin-bottom-5">
<div class="input-append">
<input type="text" class="input-xxlarge" placeholder="Enter class name">
<button type="submit" class="btn-u">Go</button>
</div>
</form>
//JavaScript/JQuery
$("form").submit(function (e) {
var searchTerm = $("input:first").val();
if (searchTerm === '') {
// This part of the code is reached for the second submit,
// I have tried using id on the submit but have the same result
}
感謝瑞安的作品.. –