setInterval计时器做一个简易电子时钟
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>电子时钟</title>
<style>
body {
background: tomato;
}
section {
height: 100px;
width: 1000px;
margin: auto;
margin-top: 300px;
}
div {
width: 100px;
height: 100px;
float: left;
text-align: center;
line-height: 100px;
font-size: 40px;
color: #ccc;
font-weight: bold;
background:orange;
}
span {