PHP速学视频免费教程(入门到精通)
PHP怎么学习?PHP怎么入门?PHP在哪学?PHP怎么学才快?不用担心,这里为大家提供了PHP速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!
js代码:
(function(){ var jQuery = window.jQuery = function( selector, context ) { return new jQuery.prototype.init( selector, context ); }; window.$ = jQuery; jQuery.fn = jQuery.prototype = { init: function( selector, context ) { var elem = document.getElementById(selector); if ( elem ) { this[0] = elem; this.length = 1; return this; } }, append: function() { alert(arguments[0]); } }; //为后面的实例化,将jQuery.prototype赋给jQuery.prototype.init.prototype,这个很重要 jQuery.prototype.init.prototype = jQuery.prototype; jQuery.extend = jQuery.fn.extend = function() { var target = arguments[0], length = arguments.length; if ( length == 1 ) { target = this; //这里很重要,this给target,才能使用$. i = 0; } if ( (options = arguments[0]) != null ) { for ( var name in options ) { if ( options[ name ] != undefined ) { target[ name ] = options[ name ]; } } } return target; }; jQuery.extend({ isFunction: function( fn ) { return !!fn && typeof fn != "string" && !fn.nodeName && fn.constructor != Array && /function/i.test( fn + "" ); } }); })();
html代码:
<script></script> <div></div> <script> function f(){}; $("#did").append("<div>append"); alert($.isFunction(f)); </script>
已抢7589个
抢已抢97573个
抢已抢15264个
抢已抢54015个
抢已抢198463个
抢已抢88405个
抢