我们如何通过javascript制作像jquery这样的简单库? 我想使用我的函数,可以在javascript中使用 animate 等函数
答案 0 :(得分:1)
我发现一个非常好的教程是http://www.mikedoesweb.com
答案 1 :(得分:0)
如果你想编写类似于jquery的库
看到这个好视频
http://ejohn.org/blog/building-a-javascript-library/
You can write you jquery extensions as below
例如,我在几天后写了下面的内容
jQuery.fn.centerElement = function () {
trace('trying to center');
this.css("position","relative");
var parentObj = $(this).parent();
this.css("top", ( parentObj.height() - this.height() ) / 2 + "px");
this.css("left", ( parentObj.width() - this.width() ) / 2 + "px");
return this;
};
你可以使用如下
$('#divid').centerElement();
答案 2 :(得分:0)
为库提供最好的示例here