//  显示js对象的所有属性名称和属性值
function displayProp(obj){
var msg ="";
for(var name in obj){
msg += name+": "+ obj[name]+"\r\n ";
}
alert(msg);
}