最終效果
須要實現的功能
- 輸入行數和列數, 生成符合函數和列數的表格
- 表格中的數字範圍 0-99, 隨機產生
- 表格須要背景顏色
- 若是行數和列數爲空, 彈框提示
- 若是輸入不符合規範(1-50), 彈框提示(包括 0, 01,hello)
- 反覆點擊按鈕, 能夠重複生成符合規範的列表
最終代碼
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title>插入制定表格數的表格</title>
<meta name="description" content="" />
<meta name="keywords" content="" />
<link href="" rel="stylesheet" />
<style> body { font: 700 14px/1.5 Arial; margin: 0; padding: 0 10px; } table { clear: both; border: 1px solid #000; } td { cursor: pointer; text-align: center; border: 1px solid #000; padding: 5px; } #setting { float: left; clear: left; line-height: 28px; margin: 10px 0; } #setting input { width: 50px; font-family: inherit; border: 2px solid #ccc; margin: 0 5px; padding: 4px; } #btn { font-size: 14px; line-height: 18px; color: #fff; text-decoration: none; background: #353535; border-top: 1px #999 solid; border-radius: 5px; padding: 4px 6px; } em { width: 25px; height: 25px; display: inline-block; margin-right: 5px; } #setting label, #setting input, #setting a { float: left; } strong { color: red; margin-left: 20px; } </style>
</head>
<body>
<div id="setting">
<label>行數</label>
<input type="text" id="row" />
<label>列數</label>
<input type="text" id="col" />
<a href="javascript:;" id="btn">生成表格</a>
<strong>提示:行和列只能是數字,且最大爲50</strong>
</div>
<script src="demo.js"></script>
</body>
</html>
複製代碼
window.onload = function(){
var oBtn = document.getElementById('btn');
oBtn.onclick = function(){
var row = document.getElementById('row').value;
var col = document.getElementById('col').value;
var reg = /^(50|[1-9]|[1-4][0-9])$/;
if(!row || !col){
alert("請輸入表格數");
return;
}
if(!reg.test(row) || !reg.test(col)){
alert('輸入的表格格式不正確! 滾!')
return;
}
var oTable = document.querySelector('table');
if(oTable){
oTable.parentNode.removeChild(oTable);
}
var oTable = document.createElement('table');
for (var i = 0; i < row; i++) {
var oTr = document.createElement('tr');
for (var j = 0; j < col; j++) {
var oTd = document.createElement('td');
oTd.innerHTML = Math.floor(Math.random()*100);
var first = Math.floor(Math.random()*155+100);
var second = Math.floor(Math.random()*155+100);
var third = Math.floor(Math.random()*155+100);
oTd.style.backgroundColor = "rgb("+first+","+second+","+third+")";
oTr.appendChild(oTd);
}
oTable.appendChild(oTr);
}
document.body.appendChild(oTable);
}
}
複製代碼
專欄地圖
- [作特效, 學JS] -- 00 開篇
- [作特效, 學JS] -- 01 超連接鼠標移入變大變紅, 鼠標移除還原
- [作特效, 學JS] -- 02 鼠標移入, div變大變紅, 鼠標移出, 回覆原貌
- [作特效, 學JS] -- 03 網頁換膚
- [作特效, 學JS] -- 04 複選框全選
- [作特效, 學JS] -- 05 複選框全選/全不選
- [作特效, 學JS] -- 06 複選框全選/全不選/反選
- [作特效, 學JS] -- 07 網頁選項卡
- [作特效, 學JS] -- 08 倒計時
- [作特效, 學JS] -- 09 正經的 全選和反選
- [作特效, 學JS] -- 10 自動生成表格
- [作特效, 學JS] -- 11 加餐-神奇的正則表達式
- [作特效, 學JS] -- 12 加餐-DOM擴展
- [作特效, 學JS] -- 13 加餐-聊聊BOM