我正在尝试将 eventListner 添加到所有文本框中。当一个盒子获得焦点时 - 应该创建一个新盒子。
如果你能帮我调试这段代码,我将不胜感激,因为它不起作用......
var inputs = document.querySelectorAll("input[type=text]");
for (var i=0; i<inputs.length; i++) {
inputs[i].addEventListener("focus",addTextBox,true);
}
function addTextBox(){
var newInput = document.createElement("input");
newInput.setAttribute("type","text");
this.appendChild(newInput);
}