我有时会看到类似以下的内容:

<input name="star2" type="radio" class="star 1"/>


<input name="star2" type="radio" class="star 2"/>


有可能在jQuery中让一个类来处理这两个类吗?因为基本上它们具有相同的父类,所以是星?如果有可能,我该怎么办?使用正则表达式?

最佳答案

是的,您可以使用$('.star')选择它们两者。您可能要尝试引用的是starts with attribute selector

另外,我怀疑是有效的类名。

07-24 18:50