我需要实现一个生成输入框,并且在生成时有一个默认值,该默认值应该自动聚焦并且应该选择所有文本;
这是我在 JS 中的函数,假设已单击按钮并调用此函数
function createFolder()
{
var newTextBoxDiv = $(document.createElement('div')).attr({
"id" : 'TextBoxDiv',
"class" : 'TextBoxDiv+ctr'
});
newTextBoxDiv.html('<input type="text" name="folder_name" id="folder_name" value="New Folder"/>');
$("#folder_name").focus(function() { $(this).select(); } );
newTextBoxDiv.appendTo("#fileTreeView");
}