我能够做到这一点:
document.onload = init();
但不是这样:
document.onload = function() {
alert('Test');
}
怎么回事?
编辑:
这是init()
var init = function() {
alert('Test');
}
答案 0 :(得分:0)
我需要在函数周围添加一些括号,然后在末尾添加另一对括号来调用它:
document.onload = (function() {
init();
})()
答案 1 :(得分:0)
试试这个:
document.onload = init(){
alert('Test');
}
重载init
函数,document.onload
最初调用init
函数。