- 16 Linux
- 7 MySQL
- 5 javascript
- 3 jQuery
- 1 画像
- 6 Google Chorme
- 4 xampp
- 1 css
- 1 PHP
- 3 Poderosa
- 1 LINE API
- 3 Windows
javascript » テキストエリアを選択状態にする
setTimeout(function(){ $("#paste").select() }, 0);
とイベントのタイミングをズラすと良い。
jQueryでフォーカスを得た場合に全選択にする機能をバインドする場合は
$(document)
.on(
"focus",
"#target",
function () {
setTimeout(function(){ $("#target").select() }, 0);
}
)
;