最終更新:2024-09-12 (木) 15:59:05 (31d)
history
Top / history
Linux/コマンド
history history -d {offset} #特定の履歴を削除
zsh (macOS)
- 標準だと16件しか表示されない
history <start> <end> history 0
- history 0 : 全件表示(startが0)
- history -20 : 20件表示
JavaScript
- history.length?
- history.back?
- history.forward?
- history.go
HTML5
- history.state?
history.pushState
- ブラウザの履歴に新規エントリを追加し戻れるようにする
history.pushState(popstateイベントのstateプロパティに入る文字列, 状態識別用のタイトル, 現在の状態に対応するURL);
history.replaceState
- 現在のエントリを入れ替える