Prototype.js 支持自定义伪类吗?

发布于 2024-08-12 11:39:18 字数 198 浏览 8 评论 0原文

也就是说,我可以定义一个名为 :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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

无需解释 2024-08-19 11:39:18

现在不可能,您需要等待 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

墨落画卷 2024-08-19 11:39:18

根据 $$ 它支持:

$('div:empty');
// -> all DIVs without content (i.e., whitespace-only)

according to $$ it supports:

$('div:empty');
// -> all DIVs without content (i.e., whitespace-only)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文