作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
是否可以使用“OR”运算符或类似运算符重写以下选择器?
$("a[href$='avi'], a[href$='mov'], a[href$='mp4'], a[href$='m4v']")
理想情况下是这样的:
$("a[href$='avi|mov|mp4|m4v']") // incorrect
让我的键盘多走几英里。我有一个test fiddle .
最佳答案
不,CSS 没有这个(它将位于 attribute selectors 区域),jQuery 也没有添加它(请参阅 "attribute ends with" docs )。
当然,如果您不介意无法匹配 |
字符,您当然可以给自己一个实用函数来执行此操作,模糊如下所示:
(function($) {
$.attrEndsWith = attrEndsWith;
function attrEndsWith(tag, attr, list) {
return $(tag + "[" + attr + "$='" + list.split("|").join("'], " + tag + "[" + attr + "$='") + "']");
}
})(jQuery);
并这样使用:
$.attrEndsWith("a", "href", "avi|mov|mp4|m4v");
这尚未经过测试,但您已经明白了。
关于jQuery 属性选择器可以使用 "OR"运算符吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7791662/
我是一名优秀的程序员,十分优秀!