JavaScript『DOM』
JavaScript暗記用です
HTMLのDOMの取得と操作
| 順位 | 名前 | スコア | 称号 | 打鍵/秒 | 正誤率 | 時間(秒) | 打鍵数 | ミス | 問題 | 日付 |
|---|---|---|---|---|---|---|---|---|---|---|
| 1 | よっぴ | 3038 | すごいね! | 3.1 | 97.7% | 270.5 | 841 | 19 | 23 | 2026/03/08 |
| 2 | mh | 2769 | すごいね! | 2.8 | 98.4% | 299.0 | 841 | 13 | 23 | 2026/02/23 |
| 3 | MIKARIN | 1952 | 頑張ったね! | 2.0 | 96.6% | 415.9 | 841 | 29 | 23 | 2026/03/18 |
関連タイピング
-
JavaScript 暗記用です
プレイ回数2466 英語長文2218打 -
Pyhonのプログラミングで使いそうな単語・記号を集めました
プレイ回数892 英語短文30秒 -
vue Lifecycle Hooks
プレイ回数248 英語157打 -
全文字タイピング練習(108文字×100問,2分間ランダム)
プレイ回数4647 英語長文120秒 -
PHP、JavaScript等様々な言語から出題!
プレイ回数4938 長文60秒 -
Vue.js 3 Transition 自分暗記用
プレイ回数251 英語長文364打 -
JAVAの練習用です。
プレイ回数1735 長文120秒 -
JavaScript暗記用です。
プレイ回数3692 英語長文707打
問題文
ふりがな非表示
ふりがな表示
(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>');