for-in语句和document.write换行

javascript直接写document,for-in用来枚举,如下图:

for-in语句和document.write换行_第1张图片

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> 
<script language="Javascript" type="text/javascript" >
    for (var propName in window) {
        document.write(propName);
        document.write("
"); } script> head> <body> body> html>

 

转载于:https://www.cnblogs.com/roytanlu/archive/2013/05/07/3065607.html

你可能感兴趣的:(for-in语句和document.write换行)