要选择以-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"
任何建议都非常感谢。
答案 0 :(得分:7)
您正在寻找.is()
:
if ($(this).is('[class*=-top]')) { ... }
编辑 - 在您选择的选择器中替换当然......