如何检查javascript中的所有字符串是否仅包含特定数字

时间:2019-05-26 10:12:06

标签: javascript

例如: 111111111返回假 123123123返回true

vad IDTextBox = document.getElementById("IDReg")
for(i<IDTextBox.length)
if(IDTextBox[i] == IDTextBox[i-1] return false;

它没有用

1 个答案:

答案 0 :(得分:0)

遍历字符串并将所有字符添加到字典中。

let dic = {};
for (let i = 0; i < IDTextBox.length; i++) {
   dic[IDTextBox[i]] = "hello world";
   if (Object.keys(dic).length > 1) return true;
}
return false

edit:翻转返回值以使其与给定的示例(而不是标题)相对应。