Not enough arguments [nsIDOMWindow.alert]
 
不符合W3C标准
原来写法
function addrole(){
    alert();
 }
应该写成
function addrole(){
  window.alert("1546548325");
 }
 
火狐不支持空的alert();