window.onload=init; var userName=''; var shopCartCount='0'; var shopCartAmount='' function init() { if(userName=='') { // document.getElementById("welcome").innerHTML='您好,欢迎光临环球超市!'; }else { document.getElementById("welcome").innerHTML=' '+userName+' ,您好, 退出'; } document.getElementById("shopCartCount").innerHTML=shopCartCount; document.getElementById("shopCartAmount").innerHTML=shopCartAmount; }