gpt4 book ai didi

Javascript 条件 - 不隐藏 ID

转载 作者:行者123 更新时间:2023-11-30 17:01:45 25 4
gpt4 key购买 nike

我正在尝试隐藏 ID“hide-homepage”并且它总体上有效,除了我想在指定的 URL ( http://wgzrv.ndxva.servertrust.com/login.asp ) 隐藏它的第二个条件。我错过了什么吗?

<script type="text/javascript">    
$(window).resize(function(){
function showMyDiv() {
if (window.location.href == "http://wgzrv.ndxva.servertrust.com") && (document.documentElement.clientWidth > 992) {
document.getElementById("hide-homepage").style.display="none";
} else if (window.location.href == "http://wgzrv.ndxva.servertrust.com/login.asp") {
document.getElementById("hide-homepage").style.display="none";
} else if (document.documentElement.clientWidth < 992) {
document.getElementById("hide-homepage").style.display="none";
} else {
document.getElementById("hide-homepage").style.display="block";
}
}
});
</script>

最佳答案

    if (window.location.href == "http://wgzrv.ndxva.servertrust.com") && (document.documentElement.clientWidth > 992) { 

应该是

    if (window.location.href == "http://wgzrv.ndxva.servertrust.com" && document.documentElement.clientWidth > 992) { 

关于Javascript 条件 - 不隐藏 ID,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28704599/

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