<!DOCTYPE html> |
<html> |
<body> |
<script> |
var user={neme: "luer" ,id:481614,email: "ll@ll.cn" }; //此处属性的值,字符串要注意加引号 |
document.write( "name:" +user[ "name" ]+ "<br />" ); |
document.write( "id:" +user[ "id" ]+ "<br />" ); |
document.write( "e-mail:" +user.email); |
</script> |
</body> |
</html> |