摘要:
插入如下函数解决兼容问题:
function mootool_jQuery_compatible(){
if(typeof(window.addEvent) == 'undefined') {
window.addEvent = function(a,b){
return jQuery(document).ready(b);
}
}
}
mootool_jQuery_compatible(); 阅读全文