gpt4 book ai didi

javascript - JS : localCompare drives me nuts

转载 作者:行者123 更新时间:2023-11-28 13:41:38 24 4
gpt4 key购买 nike

不知道我做错了什么,但我的脚本停在这个有趣的 localCompare 行。不知道为什么:(

function enableTimeInput()
{
var e = document.getElementById("sel_dateunit");
var aDateUnit = e.options[e.selectedIndex].text;
var disable = aDateUnit.localCompare("weekly");
...
}

根据 Firebug,aDateUnit 的值为 “weekly”。顺便提一句。这就是我期望的值。

最佳答案

应该是localeCompare ,而不是 localCompare:

var disable = aDateUnit.localeCompare("weekly");
// add an 'e' ---------------^

(您在控制台中没有收到类似 TypeError: Object Weekly has no method 'localCompare' 的错误吗?)

关于javascript - JS : localCompare drives me nuts,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17489329/

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