for语句:
for语句的变量不会随着循环的结束而被销毁
for(var i=0;i<5;i++){ console.log("正常输出"); } console.log(i); // 2 正常输出 // 5
with 语句:
作用是将代码的作用域设置到一个特定的对象中。
with(location){ var qs = search.substring(1); var hostName=hostname; var url=href; console.log(qs); console.log(hostName); console.log(url); }
时间: 2024-11-02 15:35:48