function PrepareCounter() {
var ct = 1;
while(document.getElementById("id_answer"+ct)) {
document.getElementById("id_answer"+ct).setAttribute("onFocus", "countChars('textbox','char_count',140)", "onKeyDown", "countChars('textbox','char_count',140)", "onKeyUp", "countChars('textbox','char_count',140)");
ct += 1;
}
}
如果我专注于我的元素countChars
被执行,但如果我写一些东西它不是。