先来看个栗子:
function buildUrl() { var qs = "?debug=true"; with(location){ var url = href + qs; console.log(location) ; } return url;}var result = buildUrl();alert(result);
with 语句接收的是location对象,因此其变量对象中就包含了location对象的所有属性和方法。
本文共 309 字,大约阅读时间需要 1 分钟。
先来看个栗子:
function buildUrl() { var qs = "?debug=true"; with(location){ var url = href + qs; console.log(location) ; } return url;}var result = buildUrl();alert(result);
with 语句接收的是location对象,因此其变量对象中就包含了location对象的所有属性和方法。
转载于:https://www.cnblogs.com/colorful-paopao1/p/9012494.html