0

次のような HTML ドキュメントの本文があるとします。

<body>
    <p>Here's some text</p>
</body>

次に、次のようにテキストを に追加します<body>

var jselem = document.createElement("div");
jselem.innerHTML = '<p>Some other text here</p>';
document.body.appendChild(jselem);

...その結果:

Here's some text
Some other text here

div次の結果が得られるように動的に作成した後、次を生成する方法はありますか?

Some other text here
Here's some text
4

1 に答える 1

4

DOM method について質問していると思いますinsertBefore

document.body.insertBefore(jselem, document.body.firstChild);

デモ: http://jsfiddle.net/MCnxM/

于 2013-06-08T17:58:23.577 に答える