为了账号安全,请及时绑定邮箱和手机立即绑定

我用于隐藏/显示 HTML 的 JavaScript 正在删除它更改的各个元素的 CSS

我用于隐藏/显示 HTML 的 JavaScript 正在删除它更改的各个元素的 CSS

Helenr 2022-10-08 17:18:23
当我单击按钮时,我有这段代码隐藏或显示 HTML 元素:function showMonth() {    var x = document.getElementById("calendarDiv");    if (x.style.display === "none") {        x.style.display = "block";        document.getElementById("timelineDiv").style.display = "none";    } }function showWeek() {    var x = document.getElementById("timelineDiv");    if (x.style.display === "none") {        x.style.display = "inline-block";        document.getElementById("calendarDiv").style.display = "none";    } }但是,在按下 showMonth 按钮后按下我的 showWeek 按钮时,我一周的 html 与我按下任何按钮之前的情况大不相同。我认为它可能正在删除/忽略它之前看到的 CSS。非常感谢任何想法/意见/帮助!
查看完整描述

2 回答

?
慕容3067478

TA贡献1773条经验 获得超3个赞

如果你可以在你的代码中使用 jQuery,也许是这样的。


CSS:

.Hide {

    Display: none !important;

}


Javascript:

function showMonth() {

    var x = document.getElementById("calendarDiv");

    if ($('#calendarDiv').hasClass("Hide")) {

        $('#calendarDiv').removeClass("Hide");

        $('#timelineDiv').addClass("Hide");

    } 

}


function showWeek() {

    var x = document.getElementById("timelineDiv");

    if ($('#timelineDiv').hasClass("Hide")) {

        $('#timelineDiv').removeClass("Hide");

        $('#calendarDiv').addClass("Hide");

    }

}


查看完整回答
反对 回复 2022-10-08
?
开心每一天1111

TA贡献1836条经验 获得超13个赞

像这样显示隐藏元素。你确定 x.style.display = "inline-block" 不是 x.style.display = "block"


function showMonth() {

            var x = document.getElementById("calendarDiv");

            if (x.style.display === "none") {

                x.style.display = "block";    

            } 

        else{

         x.style.display = "none";

        }

    }


    function showWeek() {

        var x = document.getElementById("timelineDiv");

        if (x.style.display === "none") {

            x.style.display = "inline-block";

        } 

      else{

         x.style.display = "none";

        }

    }


查看完整回答
反对 回复 2022-10-08
  • 2 回答
  • 0 关注
  • 128 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信