如何取消设置 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
   }
}

更新于:2019 年 9 月 13 日

17K+ 次浏览

启动你的职业生涯

完成课程,获得认证

开始
广告