我目前是Mootools的初学者(今天开始精益求精)。我来自jQuery。我了解了Element.Implement
。
我正在尝试将.ready函数从jquery添加到mootools。
Jquery .ready example:
$(document).ready(function(){
//Do stuff onload
});
我试图用这样的mootools来做这件事:
Element.implement({
ready: function(a){
return this.addEvent('domready', a)
}
});
但正如我所说。我是一个初学者,我无法调试。
我这样做是因为我喜欢所有的jquery函数。我习惯了他们的名字。但我喜欢mootools比jquery有一些优势。而且我知道我可以同时使用两者。但那要复杂了
答案 0 :(得分:1)
这样做:
function domready(domreadycode){
window.addEvent('domready', domreadycode);
}
并像这样使用它:
domready(function(){
//code when document is ready
});