js中有没有像php中unset一样函数
3 回答
动漫人物
TA贡献1815条经验 获得超10个赞
delete不就能用吗?
如果用var 定义,就不能注销
如果不用var 就能注销
var hello="hello";
delete(hello);
alert(hello); //hello
hello="hello";
delete(hello);
alert(hello): //出错hello未定义
- 3 回答
- 0 关注
- 1983 浏览
添加回答
举报
0/150
提交
取消