Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は<section id="thisitem"...>
<section id="thisitem"...>
そして、JS を実行しようとするとwindow.navigate("#thisitem");、その行で失敗します...なぜですか?
window.navigate("#thisitem");
window.navigate()IE固有であり、クロスブラウザ互換ではないためです。を使用しwindow.location.href = '#thisitem'ます。
window.navigate()
window.location.href = '#thisitem'
DOMnavigateにはメソッドがありません。window
navigate
window
私はあなたが意味すると思います:window.location='#thisitem';
window.location='#thisitem';