js效果的屏幕切换背景色

<!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> </head>
<body>     <button id="btn">开</button> </body> <script>

    var btnE = document.getElementById('btn'),
        text;
    btnE.addEventListener('click', function () {
        text = btnE.innerText;
        btnE.innerText = text === "开" ? "关" : "开";
        text === "开" ? document.body.style.backgroundColor = "black" : document.body.style.backgroundColor = "white";


    });


</script>
</html>
上一篇:jquery选择器


下一篇:【手势识别】基于matlab GUI石头剪刀布【含Matlab源码 774期】