我有一個TextBox「userName」,頁面加載時有一些文本。加載頁面時突出顯示TextBox
我可以在這樣的單擊事件使用jQuery突出文本框:
$(document).ready(function() {
$('#userName').click(function() { selectAllText($(this)) });
function selectAllText(textbox) {
textbox.focus();
textbox.select();
}
}):
我怎麼能在頁面加載高亮文本框 「username」 的?非常感謝。