如何在博客中发送信息?
答
你应该把localStorage
var first = localStorage.getItem("first");
if(!first){
localStorage.setItem("first", true);
alert("welcome!");
};