代码拉取完成,页面将自动刷新
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<script>
// with 语句 为一个或一组语句指定默认对象。
// 用法:with (<对象>) <语句>;
// with 语句通常用来缩短特定情形下必须写的代码量。在下面的例子中,请注意 Math 的重复使用:
var x = Math.cos(3 * Math.PI) + Math.sin(Math.LN10);
var y = Math.tan(14 * Math.E);
console.log(x)
console.log(y)
with (Math) {
var x = cos(3 * PI) + sin(LN10);
var y = tan(14 * E);
console.log(x)
console.log(y)
}
console.log(this)
with (this) {
console.log(this)
}
function Person(){
this.name='yao'
}
var name = 'guan'
with (new Person()) { //绑定tis 但是如果声明有是私有变量优先使用私有变量。
var name='shou'
console.log(name)
}
</script>
</body>
</html>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。