????ウルトラお得情報

もうdota2追ってないのでそろそろブログタイトル変えるべきかもしれません

yasp firefox dev console memo

https://yasp.co/matches/2097459823
ブラウザ管理コンソール上からなんか取れないか overviewのページ
わすれないようにするためのメモです

コンソールうち込んだ奴のメモ

jQuery("#summable")
Object { context: HTMLDocument → 2097459823, selector: "#summable" }
document.getElementsByClassName("summable")
HTMLCollection [ ]
document.getElementsByClassName("summable").length
1
jQuery("#summable #format")
Object { length: 0, prevObject: Object, context: HTMLDocument → 2097459823, selector: "#summable #format" }
jQuery("#summable")
Object { context: HTMLDocument → 2097459823, selector: "#summable" }
a= jQuery("#summable")
Object { context: HTMLDocument → 2097459823, selector: "#summable" }
a
Object { context: HTMLDocument → 2097459823, selector: "#summable" }
a= jQuery(".summable")
Object { 0: , length: 1, prevObject: Object, context: HTMLDocument → 2097459823, selector: ".summable" }
a= jQuery(".format")
Object { 0: , 1: , 2: , 3: , 4: , 5: , 6: , 7: , 8: , 9: , 他 62 個... }
a= jQuery(".summable .format")
Object { 0: , 1: , 2: , 3: , 4: , 5: , 6: , 7: , 8: , 9: , 他 62 個... }
a
Object { 0: , 1: , 2: , 3: , 4: , 5: , 6: , 7: , 8: , 9: , 他 62 個... }
a[0]

a[1]

for (var i = 0;i < a.length;i++){a[i]}

for (var i = 0;i < a.length;i++){console.log(a[i])}
undefined




































































a= jQuery(".summable tfoot .format")
Object { 0: , 1: , 2: , 3: , 4: , 5: , 6: , 7: , 8: , 9: , 他 22 個... }
for (var i = 0;i < a.length;i++){console.log(a[i])}
undefined




























a[3]

a[3].innerHTML
"24"