With语句
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>With语句</title>
<script type="text/javascript">
//使用With结构后,里面调用with中对象的方法,不需要写对象 直接写方法
with(document){
write("Hello<br/>")
write("Hello1<br/>")
write("Hello2<br/>")
write("Hello3<br/>")
}
</script>
</head>
<body>
</body>
</html>
