下面的小事例 主要实现了 一和按ID查找,并获取元素的 value 或 标签内容和一个去字符串空格的小功能能
假设元素id=“myid”;
获取标签内容$("myid").html();
去字符串空格$.trim("f f f");
代码实现:
(function (w) {
var c = function (selector) {
return new c.fn.init(selector);
};
c.fn = c.prototype = {
init: function (sid) {
var sret = "";
var s = w.document.getElementById(sid);
if (sid != null) {
if (s.type == "input") {
sret = s.value;
} else {
sret = s.innerHTML
}
}
this.html = function () {
return sret;
}
}
};
c.trim = function (a) {
return a.replace(" ","");
}
w.$ = c;
})(window)