jQuery选择器正则表达式我正在编写关于使用jQuery选择器使用通配符或正则表达式(具体术语不确定)的文档。我自己已经找过了,但是一直找不到关于语法和如何使用它的信息。有人知道语法文档在哪里吗?编辑:属性筛选器允许您根据属性值的模式进行选择。
3 回答
BIG阳
TA贡献1859条经验 获得超6个赞
$("input[id*='DiscountType']").each(function (i, el) { //It'll be an array of elements });
$("input[id^='DiscountType']").each(function (i, el) { //It'll be an array of elements });
$("input[id$='DiscountType']").each(function (i, el) { //It'll be an array of elements });
$("input[id!='DiscountType']").each(function (i, el) { //It'll be an array of elements });
$("input[id~='DiscountType']").each(function (i, el) { //It'll be an array of elements });
$("input[id|='DiscountType']").each(function (i, el) { //It'll be an array of elements });
添加回答
举报
0/150
提交
取消