LoginSignup
1
1

More than 5 years have passed since last update.

window.location.hashに渡す文字列は、1個目のハッシュが無視される

Posted at
// http://example.com/を閲覧していると想定してください。

// location.hashの値を変更すると、現在開いてるURIのハッシュ値が変わります。
// windowは省略可
window.location.hash = "child"
// -> http://example.com/#child

// 1個目のシャープは無視されます。
window.location.hash = "#child"
// -> http://example.com/#child
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1