This code should select the contents of a textarea when that textarea is selected. 但是,它本身不起作用:
$("#form").focus(function() {
$("#form").select();
});
只有当我给它一个setTimeout
0 时它才有效,就像这样:
$("#form").focus(function() {
setTimeout(function() {
$("#form").select();
}, 0);
});
这是为什么?