Not enough arguments [nsIDOMWindow.alert]
原来写法
function addrole(){
alert();
}
alert();
}
应该写成
function addrole(){
window.alert("1546548325");
}
window.alert("1546548325");
}
火狐不支持空的alert();
转载于:https://blog.51cto.com/wangyuelucky/1075581