gpt4 book ai didi

javascript - POST 后隐藏 DIV

转载 作者:行者123 更新时间:2023-11-28 00:28:21 25 4
gpt4 key购买 nike

我试图在使用 window.location.assign 发布变量后隐藏 DIV。如果选择了 DIV 内的复选框,则会发布变量。

我的代码如下。

$(document).on("change", ".checkbox", function () {
var db = $(this).val();
window.sessionStorage.setItem("db", db);
window.location.assign("index.php?db=" + db);
document.getElementById('dbdisplay').style.display='none';
});

我遇到的问题是,DIV 仅在通过 .assign 刷新页面之前暂时隐藏。我尝试使用 location.href 代替,但这不会通过 db 变量发布,因此我的 PHP 代码将无法运行。我该如何解决这个问题?

最佳答案

与您一直在尝试的方法相同的替代解决方案。

CSS:

#dbdisplay { display: none; }

JS:

//Check if there is querystring matching db=somevalue
//and if "no", display the div
if (!location.search.match(/db=[^&#]+/i)) {
$("#dbdisplay").show();
}

$(document).on("change", ".checkbox", function () {
var db = $(this).val();
window.sessionStorage.setItem("db", db);
window.location.assign("index.php?db=" + db);
$("#dbdisplay").hide();
});

关于javascript - POST 后隐藏 DIV,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29254507/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com