HTML で最も関連性の高いコピーをページのさらに上に配置するために、JS を使用して div を再配置する方法はありますか。しかし、エンド ユーザーが見るものに関しては、好きな場所に同じコピーを表示する柔軟性を持っていますか? つまり...
HTML:
<div id="three">Three(to be at the top of HTML but display at bottom in browser)</div>
<div id="one">One</div>
<div id="two">Two</div>
ブラウザ:
One
Two
Three(to be at the top of HTML but display at bottom in browser)
これに関するチュートリアルはどこにありますか? また、どの機能を使用する必要がありますか? ありがとう。