JavaScript『DOM』
| 順位 | 名前 | スコア | 称号 | 打鍵/秒 | 正誤率 | 時間(秒) | 打鍵数 | ミス | 問題 | 日付 |
|---|---|---|---|---|---|---|---|---|---|---|
| 1 | mh | 2620 | すごいね! | 2.6 | 99.0% | 317.9 | 841 | 8 | 23 | 2025/12/30 |
| 2 | mikaroko | 1993 | 頑張ったね! | 2.0 | 97.7% | 412.3 | 841 | 19 | 23 | 2025/12/18 |
関連タイピング
-
数字キーに定義されている記号の練習
プレイ回数1493英語短文68打 -
プログラミング用のタイピング練習
プレイ回数5361英語長文300秒 -
プログラミングを学びたい方は是非!2013/07/03公開
プレイ回数36万1071打 -
vue Lifecycle Hooks
プレイ回数224英語157打 -
プレイ回数2.2万英字60秒
-
全文字タイピング練習(108文字×100問,2分間ランダム)
プレイ回数4325英語長文120秒 -
プログラミングを学びたい方は是非!2025/05/21公開
プレイ回数1858610打 -
エンターキー周辺の記号
プレイ回数1243英語短文47打
問題文
(document.getElementById('id');)
document.getElementById('id');
(document.getElementsByTagName('h1');)
document.getElementsByTagName('h1');
(document.getElementsByName('name');)
document.getElementsByName('name');
(document.getElementsByClassName('class');)
document.getElementsByClassName('class');
(document.querySelector('#id');)
document.querySelector('#id');
(document.querySelectorAll('.class');)
document.querySelectorAll('.class');
(li_all=ul.childNodes;)
li_all=ul.childNodes;
(li_0=ul.childNodes[0];)
li_0=ul.childNodes[0];
(ul=li.parentNode;)
ul=li.parentNode;
(li_0=ul.firstChild;)
li_0=ul.firstChild;
(li_last=ul.lastChild;)
li_last=ul.lastChild;
(li_first=second.previousSibling;)
li_first=second.previousSibling;
(third=second.nextSibling;)
third=second.nextSibling;
(document.createElement('ul');)
document.createElement('ul');
(ul.appendChild('li');)
ul.appendChild('li');
(document.createElement('div');)
document.createElement('div');
(const h2=document.getElementsByTagName('h2'); h2[0].innerText='';)
const h2=document.getElementsByTagName('h2'); h2[0].innerText='';
(h2[0].innerHTML='<i>MENU</i>';)
h2[0].innerHTML='<i>MENU</i>';
(h2[1].setAttribute('align','center');)
h2[1].setAttribute('align','center');
(const div1=document.getElementById('div0'); div0.insertAdjacentHTML('beforebegin','<div>div0</div>');)
const div1=document.getElementById('div0'); div0.insertAdjacentHTML('beforebegin','<div>div0</div>');
(div1.insertAdjacentHTML('afterbegin','<div>div2</div>');)
div1.insertAdjacentHTML('afterbegin','<div>div2</div>');
(div1.insertAdjacentHTML('beforeend','<div>div3</div>');)
div1.insertAdjacentHTML('beforeend','<div>div3</div>');
(div1.insertAdjacentHTML('afterend','<div>div4</div>');)
div1.insertAdjacentHTML('afterend','<div>div4</div>');