(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;
}
}
これを返してください;
},
splice: arr.splice,
};
VP.extend = VP.fn.extend = function () {
var options, name, src, copy, copyIsArray, clone,
target = argument[0] {},
i = 1,
length = argument.length,
deep = false;
if (typeof target === "boolean") {
deep = target;
target = argument[i] {};
i++;
}
if (typeof target !== "オブジェクト" && !VP.isFunction(target)) {
target = {};
}
if (i === length) {
target = this;
i--;
}
for ( ;私は<長さ; i++) {
if ((options = argument[i]) != null) {
for (オプションの名前) {
src = target[name];
copy = options[name];
if (ターゲット === copy) {
Continue;
}
if (ディープ && 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, clone, copy);
else if (copy !== 未定義) {
target[name] = copy;
}
}
}
}
return target;
};
VP.fn.extend({
get: function () {
return this[0];
},
});
VP.fn.init.prototype = VP.fn;
window.VP = VP;
})(ウィンドウ);
以上がJQueryを解析してDom要素を取得する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。