jQuery實現文字框獲取焦點

admin發表於2017-03-09

本章節介紹一下如何利用jQuery讓文字框獲取焦點,程式碼非常的簡單,這裡就不用完整的程式碼介紹了。

程式碼如下:

一.input文字框:

[HTML] 純文字檢視 複製程式碼
<input type="text" name="username" id="username"/>

二.獲取焦點:

[JavaScript] 純文字檢視 複製程式碼
$("#username").focus()

相關文章