如何取消设置 JavaScript 变量?
若要取消设置 JavaScript 中的变量,请使用 undefined。然后,使用 delete 运算符完全删除它。
让我们再次尝试代码片段。
var str = “Demo Text”; window.onscroll = function() { var y = this.pageYOffset; if(y > 200) { document.write(nxt); nxt = undefined; // unset delete(nxt); // this removes the variable completely document.write(nxt); // the result will be undefined } }
广告