Prototype.js 支持自定义伪类吗?
也就是说,我可以定义一个名为 :shiny
的选择器并执行此操作吗?
$$('div.shiny') //undesired -- class based
$$('div:shiny') //desired -- logic based
这在 MooTools 和 jQuery 中可用。
That is, can I define a selector called :shiny
and do this?
$('div.shiny') //undesired -- class based
$('div:shiny') //desired -- logic based
This is available in MooTools and jQuery.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
现在不可能,您需要等待 Prototype 1.7,它将使用 Sizzle 作为默认选择器引擎
its not possible now, you will need to wait for Prototype 1.7 which will be using Sizzle as the default selector engine
根据 $$ 它支持:
according to $$ it supports: