为MooTools 1.2创建一个自定义的伪选择器

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了为MooTools 1.2创建一个自定义的伪选择器相关的知识,希望对你有一定的参考价值。

How to create a custom “:checked” pseudo selector for use in MooTools. It is just a small snippet but I’ve found it incredibly useful.
  1. Selectors.Pseudo.checked = function(){
  2. return (this.get('tag') == 'input' && (this.get('type').toLowerCase() == 'radio' || this.get('type').toLowerCase() == 'checkbox') && this.checked);
  3. };

以上是关于为MooTools 1.2创建一个自定义的伪选择器的主要内容,如果未能解决你的问题,请参考以下文章

CSS选择器

MooTools自定义事件

H5与CS3权威下.19 选择器结构性伪类选择器

使用可为空和不可为空的日期值创建 Blazor 自定义日期选择器组件

JavaScript 自定义Mootools滚动

创建自定义可绘制选择器?