日期:2014-05-16 浏览次数:20302 次
function showProps( obj ) { var props = ""; for (var p in obj) { props += p + "=" + obj[p] + "\t"; } alert(props); }