它必须等同于“匹配所有元素,但以该属性中的给定子字符串结尾”.
所以e [a!@#= finstr]匹配e,e a =“finstring”等,并且不匹配e a =“somethingfinstr”,e a =“finstr”.
帮助,谢谢
$(':not([name$="finstr"])')
应该做的伎俩!
编辑:或者
$(selector).not('[name$="value"]');