JS中with函数的作用

JS中with函数的作用

with 语句用于设置代码在特定对象中的作用域。它的语法:with (expression) statement例如:var sMessage = "hello"with(sMessage) {alert(toUpp
JavaScript140