js hash 遍历

<script>
 var check_hash = {
                "long":"0",
                "byte[]":"1",
                "bool":"false",
                "char":"' '",
                "DateTime":"DateTime.Now",
                "decimal":"0",
                "float":"0",
                "int":"0",
                "string":"\"\""
                };
	for(var key in check_hash){
		alert(key+"="+check_hash[key]); 
	}
</script>


你可能感兴趣的:(js hash 遍历)