document.body.innerHTML原型的替代命令。
我需要在原型中更改文档的innerhtml,这是原型js中document.body.innerHTML的替代命令。
答案 0 :(得分:1)
如果你有dom元素id,那么你可以使用:
$('<idOfElement>').update('Text here');
如果你想改变html,包括标签
$('<idOfElement>').update('<h1>Text here</h1>');
或者如果你想改变身体标签本身的内容
document.body.update('Text here');
如果你想改变html,包括标签
document.body.update('<h5>Text here</h5>');
我希望这会有所帮助。
答案 1 :(得分:0)
//<p> Hello, <b>World</b>!</p>
var para = document.createElement('p');
para.appendChild(document.createTextNode('Hello, '));
// <b>
var b = document.createElement('b');
b.appendChild(document.createTextNode('World');
para.appendChild(b);
para.appendChild(document.createTextNode('!'));
// Do something with the para element, add it to the document, etc.
也
var node = document.getElementById("one");
while( node.firstChild )
node.removeChild( node.firstChild );
node.appendChild( document.createTextNode("Two") );