微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

JQuery 获取Dom元素的实例讲解

废话不多说,直接上代码

rush:js;"> (function (window) { var arr = []; var VP = function (selector,context) { return new VP.fn.init(selector,context); } VP.fn = VP.prototype = { constructor: VP,init: function (selector,context) { var _document = window.document,elem,mark = selector.charat(0); if (mark == '#') { elem = _document.getElementById(selector.substring(1)); if (elem) { this[0] = elem; this.length = 1; } } return this; },splice: arr.splice,}; VP.extend = VP.fn.extend = function () { var options,name,src,copy,copyIsArray,clone,target = arguments[0] || {},i = 1,length = arguments.length,deep = false; if (typeof target === "boolean") { deep = target; target = arguments[i] || {}; i++; } if (typeof target !== "object" && !VP.isFunction(target)) { target = {}; } if (i === length) { target = this; i--; } for (; i < length; i++) { if ((options = arguments[i]) != null) { for (name in options) { src = target[name]; copy = options[name]; if (target === copy) { continue; } if (deep && copy && (VP.isPlainObject(copy) || (copyIsArray = VP.isArray(copy)))) { if (copyIsArray) { copyIsArray = false; clone = src && VP.isArray(src) ? src : []; } else { clone = src && VP.isPlainObject(src) ? src : {}; } target[name] = VP.extend(deep,copy); } else if (copy !== undefined) { target[name] = copy; } } } } return target; }; VP.fn.extend({

get: function () {
return this[0];
},});
VP.fn.init.prototype = VP.fn;
window.VP = VP;
})(window);

以上这篇JQuery 获取Dom元素的实例讲解就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持编程之家。

原文地址:https://www.jb51.cc/jquery/38012.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐