为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.
Selectors.Pseudo.checked = function(){ return (this.get('tag') == 'input' && (this.get('type').toLowerCase() == 'radio' || this.get('type').toLowerCase() == 'checkbox') && this.checked); };
以上是关于为MooTools 1.2创建一个自定义的伪选择器的主要内容,如果未能解决你的问题,请参考以下文章