← Contents



<html>
<script>
window.onload=function()
{let 文字=document.getElementById("文字");
表示.textContent="こんにちは";}
</script>
<p id="表示"></p>
<hr>
<script>
window.document.write("こんにちは");
</script>
<hr>
<p>こんにちは</p>
</html>

  STUDY_html_036_D.html

<html>
<meta charset="utf-8">

<script> すくりぷと </script>

<div id="てーぶる"></div>

</html>
   ・・・CSSは使われていません
<script>
function 新_table(文字,表示)
{let せる=[];
let てーぶる=document.createElement("table");

for(愛=0;愛<文字.length;愛++)
{せる.push(てーぶる.insertRow(-1));
for(時=0;時<文字[0].length;時++)
{cell=せる[愛].insertCell(-1);
cell.appendChild(document.createTextNode(文字[愛][時]));

if(愛==4){cell.style.backgroundColor="#d8d8d8";}
else{cell.style.backgroundColor="#bbbbbb";}}}

document.getElementById(表示).appendChild(てーぶる);}
window.onload=function()
{let 文字=[[1,2,3],
[4,5,6],
[7,8,9],
[10,11,12],
["■","_","_"]];
新_table(文字,"てーぶる");};
</script>

トップにもどるボタン