如何用js实现:

发布网友 发布时间:2022-04-23 19:10

我来回答

2个回答

热心网友 时间:2022-04-22 18:07

<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title>这样用JS实现</title> <style type="text/css"> table { border-collapse: collapse; border-spacing:0; } table tr: nth-child(odd){ background-color: #ddd; } table td{ border: 1px solid #000; } </style> </head> <body> <span>表格行数</span>:<input type="number" id="row" value=6> <span>表格列数</span>:<input type="number" id="col" value=8> <button id="btn">绘制表格</button> <table><tbody></tbody></table> <script type="text/javascript"> btn.onclick = function(){ var rowNo = row.value, colNo = col.value; if (rowNo < 1) { alert('行数非法'); return; } if (colNo < 1) { alert('列数非法'); return; } var tbodyHtml = ''; for (var i = 0; i < rowNo; i++) { tbodyHtml += '<tr>'; for (var j = 0; j < colNo; j++) { tbodyHtml += '<td>(' + (i + 1) + ',' + (j + 1) + ')</td>'; } tbodyHtml += '</tr>'; } document.getElementsByTagName('tbody')[0].innerHTML = tbodyHtml; }; </script> </body></html>

热心网友 时间:2022-04-22 19:25

$('#name').blur(function(){
var val = $('#name').val();
if(val.length<=0){
alert('会员名不能为空')
}else if(val.length<6){
alert('会员名至少包括6个字符')
}else if(/^[A-Za-z]+/.test(val)){

}else{
alert('首字符必须为字母!')
}
})
$('#name').focus(function(){
$('#name').val('');
})

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com