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