为了账号安全,请及时绑定邮箱和手机立即绑定

jQuery选择器正则表达式

jQuery选择器正则表达式

鸿蒙传说 2019-06-10 20:48:21
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
     });

如果要选择下列元素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
     });


查看完整回答
反对 回复 2019-06-10
  • 3 回答
  • 0 关注
  • 669 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信