0
0

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

chromeでjqueryを使ってWebフォームの入力項目を埋める

Posted at

前提条件

Chorome バージョン: 95.0.4638.54(Official Build)

入力したい値を検索

F12→select an element in the page to inspect it
Elementsで該当箇所をコピー
IDやnameで該当するValueを確認

例)yahoo 天気で地名を入力場合
https://weather.yahoo.co.jp/weather/
ターゲットとなるセレクトボックス

<input type="text" value="" id="searchText" name="p" size="35" data-rapid_p="1" style="color: rgb(153, 153, 153);">

consoleで入力項目を入力

inputの場合

$('input[id="searchText"]').val('東京');

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?