var testobj = |
{ |
'id' : 1, |
'content' : 'test' , |
'firstname' : function () { |
document.getElementById( 'firstname' ).value = "zhang" ; |
}, |
'lastname' : function () { |
document.getElementById( 'lastname' ).value = "ying" ; |
} |
}; |
<!-- 打印对像 --> |
console.log(testobj); |