Extend jQuery is()函数
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Extend jQuery is()函数相关的知识,希望对你有一定的参考价值。
This extends jQuery.is() so now you can use if ($(element).is())
(function($) { $.fn.extend({ _is: $.fn.is, is: function(s) { return this._is(s || '*');} }); })(jQuery)
以上是关于Extend jQuery is()函数的主要内容,如果未能解决你的问题,请参考以下文章