发表于: 2020-08-31 23:49:44

1 1089


今天的问题:

1.不会设置页面的判断

            // 绑定btn点击事件
            btn.onclick = function () {

                if (imgArr = imgArr[0]) {
                    // 页面1点击事件
                    button.textContent = "查看" + index + "号身份";
                    document.getElementById("box1").style.display = ""
                    document.getElementById("box2").style.display = "none"
                    
                } else if (imgArr = imgArr[1]) {
                    // 页面2点击事件
                    button.textContent = "隐藏并传递给" + index + "号";
                    document.getElementById("box1").style.display = "none"
                    document.getElementById("box2").style.display = ""
                    // 角色身份
                    document.getElementById('player').innerHTML = "角色:" + arr[index];
                }

                // 判断index是否小于数组的长度
                if (index < arr.length) {
                    index++;
                    // 数字文本
                    document.getElementById('figure').innerHTML = index;
                }
            }


2.如何判断数组的个数:如8个数组元素如何列出1-8的数字


返回列表 返回列表
评论

    分享到