jquery选择具有相似名称的类

时间:2012-07-09 15:31:30

标签: jquery jquery-selectors

我在一个带有动态类名的循环中生成了一些html个表。这些类看起来像:

<tr class="method_11">
<tr class="method_12">
<tr class="method_13">

有没有办法通过仅使用它们的公共部分来选择所有上述类

$('.method_options_1'+' ')

3 个答案:

答案 0 :(得分:3)

$('tr[class^="method_"]')

这会选择属性“class” “method_”开头的元素,这符合您的条件。

答案 1 :(得分:3)

从:

开始
$("tr[class^='method_']")

http://api.jquery.com/attribute-starts-with-selector/

答案 2 :(得分:0)

你在寻找像css通配符这样的东西吗?

我猜jQuery紧跟css选择器

wildcard * in CSS for classes