例如: 111111111返回假 123123123返回true
vad IDTextBox = document.getElementById("IDReg")
for(i<IDTextBox.length)
if(IDTextBox[i] == IDTextBox[i-1] return false;
它没有用
答案 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:翻转返回值以使其与给定的示例(而不是标题)相对应。