1

要选择以 I 结尾的输入,-top请执行以下操作:

$("input[class$='-top'],input[class*='-top ']")

但是,如何检查这是否以 结尾-top

$('Input').keyup( function(){

 // How to check if $(this).prop('class') end with  "-top"

});

如何检查是否$(this).prop('class') end with "-top"

任何建议都非常感谢。

4

1 回答 1

7

您正在寻找.is()

if ($(this).is('[class*=-top]')) { ... }

编辑——当然,用您选择的选择器替换...

于 2012-07-03T15:04:15.293 回答