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.
ポップアップで動作するアプリケーションがあります。ポップアップウィンドウには手動の戻るボタンがないので、手動で戻るボタンを実行する簡単な方法はありますか?
ありがとう。
これで機能するjavascripthistoryオブジェクトを利用する
history
function goBack() { window.history.go(-2) }