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 devtools 小ネタいくつか

Last updated at Posted at 2020-09-04

jQueryが入っていなくても$$で同じことができる

$$('.foo'), $$('#bar'), $$('tagName')で同等のことができる
($が2個であることに注意)

ただし、

  • $('selector')document.querySelector()
  • $$('selector')document.querySelectorAll()
    を呼ぶことと、それぞれ似た様子。しかも$$('selector')だと配列を返す

イベント発生を監視してログ出力

  • monitorEvents($('selector'))で全てのイベントを監視
  • monitorEvents($('selector'),'eventName')で指定のイベントを監視
  • monitorEvents($('selector'),['eventName1','eventName3',….])で複数のイベントを指定
  • unmonitorEvents($('selector'))で監視解除

オブジェクトの配列の場合はconsole.logよりconsole.tableの方がよさげ

const myArray=[
  {a:1,b:2,c:3},
  {a:1,b:2,c:3,d:4},
  {k:11,f:22},
  {a:1,b:2,c:3}
]

console.table(myArray)とすると

スクリーンショット 2018-08-23 10.17.04.png

こんな感じになるので、わかりやすくなる。

Sourcesタブで表示しているJSコードのうち、任意のコードをConsoleで実行することができる

  1. SourcesタブでJavaScriptコードを表示する

  2. 実行したい箇所のコードを選択する

  3. 右クリックしてメニューを表示し、Evaluate in consoleを選択する
    スクリーンショット 2018-08-23 12.04.55.png

  4. Consoleでコードが実行される
    スクリーンショット 2018-08-23 12.05.20.png

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?