This article explains in detail the example code of random roll call in html seating chart
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>点名</title> <style> td { width: 9.09%; height: 50px; text-align: center; } .tdBg { background-color: pink; } </style> <script> var timer = null; // 这是一个函数,表示一个功能 function start(){ timer = setInterval(function(){ // alert("要开始了!"); // console.log("???"); // 1.找到所有的 单元格 var allTd = document.getElementsByTagName("td"); // 3.获取一个随机数 // Math.random() 获取一个0-1的小数 // Math.random()*42 获取0-42中间的小数 // parseInt()把一个数字变成整数,例:parseInt(55.99999) ====== 55 var num = parseInt(Math.random()*42); // 2.遍历所有单元格,将所有单元格加上背景颜色 for (var i=0; i<allTd.length; i++) { // 如果(xxxxx) { // 1 // } 否则 { // 2 // } if (i == num) { allTd[i].className = "tdBg"; } else { allTd[i].className = ""; } } }, 1); } function end(){ clearInterval(timer); } </script> </head> <body> <!-- table是表格标签,tr表示一行,td表示一行中的一个单元格 --> <!-- 默认情况,单元格会根据内容的长度比例来自动设置 --> <table border="1" width="1000"> <tr> <!-- 可以对单元格施加宽度属性,使用百分比和长度皆可 --> <td></td> <td></td> <td></td> <td></td> <td></td> <td rowspan="4">走<br>廊</td> <td>钱华</td> <td>康娜娜</td> <td>黄奕渊</td> <td>马庆元</td> <td></td> </tr> <tr> <td>刘杰</td> <td>魏培芳</td> <td>程鹏</td> <td>王可可</td> <td>曹敬</td> <td>朱明洋</td> <td>毛岗</td> <td>王博</td> <td>张国庆</td> <td>潘世豪</td> </tr> <tr> <td>黄倩倩</td> <td>张凯</td> <td>张坤</td> <td>唐东权</td> <td>范东东</td> <td>夏思泽</td> <td>于号山</td> <td>熊仁龙</td> <td>夏利敏</td> <td>史一良</td> </tr> <tr> <td></td> <td>陈兰</td> <td>刘攀登</td> <td>袁翔</td> <td>李鑫</td> <td></td> <td>谢华强</td> <td>焦浩</td> <td>李亚丹</td> <td>韩婷婷</td> </tr> <tr> <!-- colspan 可以跨列 --> <td colspan="11">Poppei</td> </tr> </table> <br><br> <input type="button" value="开始" onclick="start()"> <input type="button" value="结束" onclick="end()"> </body> </html>
The above is the detailed content of Example code for random roll call in html seating chart. For more information, please follow other related articles on the PHP Chinese website!

本篇文章带大家了解一下HTML(超文本标记语言),介绍一下HTML的本质,HTML文档的结构、HTML文档的基本标签和图像标签、列表、表格标签、媒体元素、表单,希望对大家有所帮助!

不算。html是一种用来告知浏览器如何组织页面的标记语言,而CSS是一种用来表现HTML或XML等文件样式的样式设计语言;html和css不具备很强的逻辑性和流程控制功能,缺乏灵活性,且html和css不能按照人类的设计对一件工作进行重复的循环,直至得到让人类满意的答案。

总结了一些web前端面试(笔试)题分享给大家,本篇文章就先给大家分享HTML部分的笔试题(附答案),大家可以自己做做,看看能答对几个!

HTML5中画布标签是“<canvas>”。canvas标签用于图形的绘制,它只是一个矩形的图形容器,绘制图形必须通过脚本(通常是JavaScript)来完成;开发者可利用多种js方法来在canvas中绘制路径、盒、圆、字符以及添加图像等。

在html中,document是文档对象的意思,代表浏览器窗口的文档;document对象是window对象的子对象,所以可通过“window.document”属性对其进行访问,每个载入浏览器的HTML文档都会成为Document对象。

html5废弃了dir列表标签。dir标签被用来定义目录列表,一般和li标签配合使用,在dir标签对中通过li标签来设置列表项,语法“<dir><li>列表项值</li>...</dir>”。HTML5已经不支持dir,可使用ul标签取代。

3种取消方法:1、给td元素添加“border:none”无边框样式即可,语法“td{border:none}”。2、给td元素添加“border:0”样式,语法“td{border:0;}”,将td边框的宽度设置为0即可。3、给td元素添加“border:transparent”样式,语法“td{border:transparent;}”,将td边框的颜色设置为透明即可。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver Mac version
Visual web development tools

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.
