我使用这个脚本,我发现当用户单击文本链接时添加一个文本框,有什么办法可以让每个自动出现的新文本框在文本框中都有光标。
继承人的脚本:
function add(orderType) {
//Create an input type dynamically.
var element = document.createElement("input");
//Assign different attributes to the element.
element.setAttribute("type", "text");
element.setAttribute("name", orderType + "[]");
var foo = document.getElementById(orderType);
//Append the element in page (in span).
//Create the option text
var a = document.createTextNode("Choice: ");
foo.appendChild(a);
foo.appendChild(element);
var br = document.createElement("br");
foo.appendChild(br);
i++;
}
非常感谢