HTMLドキュメント内に次の設定があります...
<div id="logo"><h2>my top logo</h2></div>
<div id="one"><p>this is the first section with stuff in it</p></div>
<div id="two"><h1>this is the section section with stuff in it</h1></div>
<script>//this script associates to stuff in div id=two</script>
< div id = one > を伝える方法はありますか? < script > タグの下に移動するには、次のようにします...
<div id="logo"><h2>my top logo</h2></div>
<div id="two"><h1>this is the section section with stuff in it</h1></div>
<script>//this script associates to stuff in div id=two</script>
<div id="one"><p>this is the first section with stuff in it</p></div>
これらすべてを含む親 div 要素 ID に依存することはできません。私はあなたがここで見るものだけに頼る必要があります。
ありがとう