2019-06-05 Ready-five js点击一个按钮让b
作者:
lao老麻 | 来源:发表于
2019-06-05 16:11 被阅读0次<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<button>点击</button>
<script>
let btn = document.getElementsByTagName("button")[0];
let blu=true
btn.onclick = function () {
if (blu) {
document.body.style.backgroundColor = "red"
blu=false
} else {
document.body.style.backgroundColor = "white"
blu=true
}
}
</script>
</body>
</html>
本文标题:2019-06-05 Ready-five js点击一个按钮让b
本文链接:https://www.haomeiwen.com/subject/nxlsxctx.html
网友评论