<script language="JavaScript"> <!-- function kaisi1() { // 配列変数 [colors] var colors = new Array(10); colors[0] = "#ff0000"; colors[1] = "#0ff000"; colors[2] = "#00ff00"; colors[3] = "#000ff0"; colors[4] = "#0000ff"; colors[5] = "#f0f000"; colors[6] = "#f00f00"; colors[7] = "#f000f0"; colors[8] = "#f0000f"; colors[9] = "#0f0f00"; // 配列変数 [tag] var tag = new Array(8); tag[0]='<table border="0" width="100%" bgcolor="'; tag[1]='">'; tag[2]='<tbody>'; tag[3]='<tr>'; tag[4]='<td>bgcolor</td>'; tag[5]='</tr>'; tag[6]='</tbody>'; tag[7]='</table>'; // 配列変数を統合する var ketugou1 = tag[0]; var ketugou2 = tag[1]; // ループ処理 for(i=2;i<7;i++){ ketugou2 += tag[i]; } // ランダム数値を算出する var index =Math.floor(Math.random()*colors.length); //変数を統合する var a =ketugou1 + colors[index] + ketugou2; //タグを書き込む document.getElementById("TxtBox").innerHTML= a } //--> </script>
|