jQuery选择器正则表达式

jQuery选择器正则表达式

我正在编写关于使用jQuery选择器使用通配符或正则表达式(具体术语不确定)的文档。

我自己已经找过了,但是一直找不到关于语法和如何使用它的信息。有人知道语法文档在哪里吗?

编辑:属性筛选器允许您根据属性值的模式进行选择。


鸿蒙传说
浏览 670回答 3
3回答

BIG阳

这些可能会有帮助。如果你发现含那就像这样    $("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      });如果要选择下列元素ID不是给定的字符串。    $("input[id!='DiscountType']").each(function (i, el) {          //It'll be an array of elements      });如果要选择下列元素ID包含一个由空格分隔的给定单词。     $("input[id~='DiscountType']").each(function (i, el) {          //It'll be an array of elements      });如果要选择下列元素ID等于给定的字符串,或以该字符串开头,后面跟着连字符。     $("input[id|='DiscountType']").each(function (i, el) {          //It'll be an array of elements      });
打开App,查看更多内容
随时随地看视频慕课网APP