最新文章专题视频专题问答1问答10问答100问答1000问答2000关键字专题1关键字专题50关键字专题500关键字专题1500TAG最新视频文章推荐1 推荐3 推荐5 推荐7 推荐9 推荐11 推荐13 推荐15 推荐17 推荐19 推荐21 推荐23 推荐25 推荐27 推荐29 推荐31 推荐33 推荐35 推荐37视频文章20视频文章30视频文章40视频文章50视频文章60 视频文章70视频文章80视频文章90视频文章100视频文章120视频文章140 视频2关键字专题关键字专题tag2tag3文章专题文章专题2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章专题3
当前位置: 首页 - 科技 - 知识百科 - 正文

非常有趣的九九乘法表_html/css

来源:动视网 责编:小采 时间:2020-11-27 16:05:40
文档

非常有趣的九九乘法表_html/css

非常有趣的九九乘法表_html/css_WEB-ITnose: 九九乘法表 body{font-size: 12px;font-family: 微软雅黑;color: #666;} table{margin-top: 50px;} table td{border:1px solid #ccc;font-size: 14px;padding: 5px;} table
推荐度:
导读非常有趣的九九乘法表_html/css_WEB-ITnose: 九九乘法表 body{font-size: 12px;font-family: 微软雅黑;color: #666;} table{margin-top: 50px;} table td{border:1px solid #ccc;font-size: 14px;padding: 5px;} table

< html >

< head >

< meta charset = "UTF-8" />

< title >九九乘法表

< style type = "text/css" >

body{font-size: 12px;font-family: "微软雅黑";color: #666;}

table{margin-top: 50px;}

table td{border:1px solid #ccc;font-size: 14px;padding: 5px;}

table td:hover{background:#141414;color:#fff;cursor: pointer;}

h1{text-align: center;height: 50px;}

.control{width: 300px;height: 30px;position: absolute;top: 50px;right: 20px;}

#number{height: 20px;outline: none;}

#btn{width:60px;height:26px;border:0;border-radius: 0 3px 3px 0;outline: none;cursor: pointer;}

< body >

< h1 >非常有趣的九九乘法表

< div >

< input type = "text" id = "number" />< input type = "button" onclick = "change(this)" value = "更换" id = "btn" />

< hr />

< div id = "box" >

< script type = "text/javascript" >

gb_changfabiao(9);

//循环打印乘法表

function gb_changfabiao(number){

var html = "< table >";

for(var i = 1; i <= number; i++){

html += "< tr >";

for(var j = 1; j <=i; j++){

html += "< td >" + j + "*" + i + "=" + (i*j) + "";

}

html += "";

}

html += "";

document.getElementById("box").innerHTML = html;

}

//获取number

function change(obj){

var number = document.getElementById("number").value;

if(number == ""|| number <= 0 || isNaN(number)){

return gb_changfabiao(9);

}

gb_changfabiao(number);

}

//回车确认

document.onkeydown = function(e){

if(!e) e = window.event;

if((e.keyCode || e.which) == 13){

document.getElementById("btn").click();

}

}

文档

非常有趣的九九乘法表_html/css

非常有趣的九九乘法表_html/css_WEB-ITnose: 九九乘法表 body{font-size: 12px;font-family: 微软雅黑;color: #666;} table{margin-top: 50px;} table td{border:1px solid #ccc;font-size: 14px;padding: 5px;} table
推荐度:
  • 热门焦点

最新推荐

猜你喜欢

热门推荐

专题
Top