gpt4 book ai didi

javascript - div id 包含长度为零

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

我正在检查 Div id 包含的内容。如果该 Div 存在,则显示另一个要显示或隐藏的 div。

如果我使用完整的 div id 长度,则显示 1,否则始终为零。

$(function () {
alert($('div[id="dnn_ctr2555_DNNWebControlContainer_ctl01_SPE_MBRDemographicsControl_pnlDemographics"]').length);
if ($('div[id^="_SPE_MBRDemographicsControl_pnlDemographics"]').length) {
/* it exists */
$('#DemographicCntrlContent').show();
}
else {
/* it doesn't exist */
$('#DemographicCntrlContent').hide();
}
})

我的 if 条件出了什么问题。

最佳答案

[attr^=abc] 检查开头的属性 abc

[attr$=abc] 检查 结尾的属性 abc

[attr*=abc] 检查包含字符串的属性 abc

[attr~=abc] 检查等于 abc 的属性 - 所以 hello abcd 不会匹配,但 hello abc

[attr|=abc] 检查 abcabc-... 的属性,即确切的单词 abcabc 后跟 -(然后跟任何内容)

关于javascript - div id 包含长度为零,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34731789/

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