我在頁面上有多個按鈕,我想模擬點擊NEXT按鈕。jQuery點擊下一步按鈕
$('input, select').keydown(function(e){
if(e.which == 13)
//$('input[type*=button]').click();
$(this).next('input[type*=button]').click();
});
HTML:
<tr>
<td class="cell">
<input type="text" name="domain" class="entryfield" value="http://">
</td>
</tr>
<tr>
<td class="cell" align="right" colspan="2">
<input type="button" class="button" value="Get IP" id="submitDomain"/>
</td>
</tr>
註釋的代碼工作,但點擊頁面上的所有按鍵。
任何幫助表示讚賞,謝謝。
這取決於你的HTML是什麼樣子... – 2012-03-31 15:34:06
嘿@AndrewWhitaker,你能解釋一下嗎?我必須使用.parents()嗎? – Prash 2012-03-31 15:38:05
您可能正在尋找以下按鈕。但是'next('somehere')'只是一個條件語句。它不會自動給你下面的按鈕。只是,如果下一個*是一個按鈕,它將在下一步執行。 – Marnix 2012-03-31 15:39:57