0
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 5 years have passed since last update.

Java ScriptをブラウザのURL上から行う方法。

Posted at

#JavaScript疑似プロトコル
別名:JavaScript pseudo protocol / javascript疑似スキーム / JavaScript URI

#コード
このコードをURLに貼り付けるとアラート画面がブラウザから出てくる。


javascript:alert('test');

#使い方
そもそも「javascript:」とは、疑似プロトコルの一種とのこと。
これに始まる文字列がアドレスバーに入力されると、ブラウザがそれをJavaScriptとして解釈し実行する。(今回はalert('test')の部分。
これを応用したのがブックマークレットである。

上手くいけば申し込みフォームの自動入力はやってくれると思う。多分。

0
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
0
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?