<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
div {
width: 100px;
height: 100px;
}
</style>
</head>
<body>
<script>
function number1() {
var a = parseInt(Math.random() * 256)//0-255
var b = parseInt(Math.random() * 256)
var c = parseInt(Math.random() * 256)
return '(' + a + ',' + b + ',' + c + ')'//返回随即色
}
var x = number1()
document.write(x)
document.write("<div class='box' style='background-color:rgb" + x + "'></div>")
</script>
<div></div>
</body>
</html>