gpt4 book ai didi

javascript - jQuery .toggle(showOrHide) 不工作

转载 作者:行者123 更新时间:2023-11-30 12:42:20 24 4
gpt4 key购买 nike

我想使用 .toggle( showOrHide ) 函数来检查状态。在 api 文档中,它被称为;

$( "#foo" ).toggle( showOrHide );
if ( showOrHide === true ) {
$( "#foo" ).show();
} else if ( showOrHide === false ) {
$( "#foo" ).hide();
}

但是它不起作用。有人知道如何让它工作吗?我想检查状态是显示还是隐藏。

最佳答案

根据文档:http://api.jquery.com/toggle/

The second version of the method accepts a Boolean parameter. If this parameter is true, then the matched elements are shown; if false, the elements are hidden. In essence, the statement:

需要声明truefalse

var showOrHide = true;

if ( showOrHide === true ) {
$( "#foo" ).show();
} else if ( showOrHide === false ) {
$( "#foo" ).hide();
}

在大多数情况下使用速记是有意义的,但 OP 似乎要求先检查状态。

关于javascript - jQuery .toggle(showOrHide) 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23992555/

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