2

我正在html使用动态类名的循环中生成一些表。这些类看起来像:

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

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

$('.method_options_1'+' ')?

4

3 回答 3

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

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

于 2012-07-09T15:34:19.643 回答
3

从...开始:

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

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

于 2012-07-09T15:34:42.883 回答
0

你在寻找类似css通配符的东西吗?

我猜 jQuery 紧跟 CSS 选择器

通配符 * 在 CSS 中用于类

于 2012-07-09T15:33:34.390 回答