javascript – 这个运算符〜=在jquery中是什么意思?

前端之家收集整理的这篇文章主要介绍了javascript – 这个运算符〜=在jquery中是什么意思?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我在某处看到了这个$(“a [rel~ =’single’]”).在jquery中运算符〜=是什么?

有谁知道文件的位置是什么?

提前致谢.

最佳答案

When the equal sign in an attribute selector is preceded by a tilde (
~ ),that means that the selector will match if the value listed is
any one of the space-separated values of the given attribute. So the
first rule’s selector,*[class~=”urgent”],will match any of the
following elements:

资料来源:http://meyerweb.com/eric/articles/webrev/200008b.html

可以在此处找到代字号选择器的jQuery文档:

http://api.jquery.com/attribute-contains-word-selector/

原文链接:https://www.f2er.com/jquery/428114.html

猜你在找的jQuery相关文章