2015-10-18 62 views
1

我有一個由infoTab.elements[1]捕獲的對象。如何更改對象的html?

這是對象Object { type="html", html="or<hr>"}

如何更改DOM中的object.html?

+1

'infoTab.elements [1] .html =「something」 –

回答

1
infoTab.elements[1]; // Object { type="html", html="or<hr>"} 

console.log(infoTab.elements[1].html); // or<hr> 

infoTab.elements[1].html = "2<hr>"; 

console.log(infoTab.elements[1].html); // 2<hr>