点击一个特定的提交按钮与JQuery

前端之家收集整理的这篇文章主要介绍了点击一个特定的提交按钮与JQuery前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我点击提交按钮使用这个:
$('input[type=submit]').click();

问题是我在我的页面上有更多的1提交按钮,所以我需要指定一个特定的提交按钮。

我该怎么办?

解决方法

如果您知道提交输入的数量以及您想要触发点击的数量,那么您可以使用第n-child()语法来定位它。或者为每个将它们与另一个分隔开的ID添加一个ID或类。

通过索引选择元素:

$('input[type="submit"]:nth-child(1)').trigger('click');//selects the first one
$('input[type="submit"]:nth-child(2)').trigger('click');//selects the second one
$('input[type="submit"]:nth-child(100)').trigger('click');//selects the 100th one

实际上有几种方法可以使用.eq():http://api.jquery.com/eq

通过id来选择元素:

<input type="submit" id="submit_1" />
<input type="submit" id="submit_2" />
<input type="submit" id="submit_100" />

<script>
$('#submit_100').trigger('click');
</script>

请注意.click()是.trigger(‘click’)的缩写。

原文链接:https://www.f2er.com/jquery/182223.html

猜你在找的jQuery相关文章