jQuery ^= 与 |=。不必要?
jQuery attributeContainsPrefix [name^="value"]
vs
attributeStartsWith [name|="value"]
实际区别是什么?
jQuery attributeContainsPrefix [name^="value"]
vs
attributeStartsWith [name|="value"]
What the practical difference?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
手册中的属性包含前缀选择器:
这意味着它将匹配
en
和en-US
,但不会像其他那样匹配entanglement
。这不仅对语言有好处,而且对任何可以前缀的东西都有好处。Attribute Contains Prefix Selector in the Manual:
That means it will match
en
anden-US
but will not matchentanglement
like the other would. And this is not only good for languages, but anything that can be prefixed.