要选择以 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"
任何建议都非常感谢。