gpt4 book ai didi

javascript - 这个 JS if Condition 测试有什么问题?

转载 作者:行者123 更新时间:2023-11-29 16:25:23 25 4
gpt4 key购买 nike

这段代码在没有 if 条件测试的情况下工作正常,我在 if 条件方面哪里出了问题?

$(document).ready(function() {
if ($("input[name=contest_open]").val() == true) {
var refreshId = setInterval(function()
{
$('#tweets').fadeOut("slow").fadeIn("slow");
$.get("/event", { event:$("input[name=event]").val(), }, function(data) {
console.log(data.success);
console.log(data.page_link);
console.log('Succesfully Loaded Data from JSON FORMAT GET');
$('#tweets').html(data.html);
$('#pagelink').html(data.page_link);
});
}, 30000);
}
})

最佳答案

问题是 val 不返回 bool 值。如果您尝试检查 input[name=contest_open]value 是否不为空,请尝试 val() !== ""相反。

如果您尝试检查该值是否为字符串“true”,则需要将 true 用引号引起来。

关于javascript - 这个 JS if Condition 测试有什么问题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6510572/

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