2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

window.alert の文字列をコピペしたい

Last updated at Posted at 2022-05-31

目的

海外のサイトをブラウジングしていたときに alert でメッセージが出た。

...読めない。

...普通ならコピペで Google 翻訳するが、alert の文字列は選択できずコピーができない。。少なくとも自分のブラウザでは。

英語ならまだしも、他の言語だと書くこともできない。
コピーできるようにしたい。

やったこと

開発者ツールで window.alert を上書きした。js って便利。

window.alert = function(message) { console.log(message); }

コンソールに文字列が出たので無事にコピペできた。

ドキュメント

2
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
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?