jQuery插件-onpage-检查当前页面上的选择器
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery插件-onpage-检查当前页面上的选择器相关的知识,希望对你有一定的参考价值。
function as jquery plugin to test if selector is found on the current page. Sample use:if ( $("#myID").onpage() ) { $("#myID img").click(function(){ //do this..here.. });
// function as jquery plugin to test if selector is found on the current page (function($){ $.fn.onpage = function() { return ($(this).length>0) ? true : false } })(jQuery);
以上是关于jQuery插件-onpage-检查当前页面上的选择器的主要内容,如果未能解决你的问题,请参考以下文章
在页面上的多个输入上使用 tokeninput jquery 插件