JavaScript - 检查此(当前元素)是否具有以。结尾的类

时间:2012-07-03 15:02:55

标签: javascript jquery jquery-selectors

要选择以-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"

任何建议都非常感谢。

1 个答案:

答案 0 :(得分:7)

您正在寻找.is()

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

编辑 - 在您选择的选择器中替换当然......