jQuery 是一款流行的 JavaScript 庫,已被廣泛應用于網(wǎng)頁開發(fā)中。在 jQuery 中,我們可以使用一些簡單的語法來設(shè)置 input 的值。
// 設(shè)置 input 的值為字符串 "Hello World!" $('input').val('Hello World!');
在上面的代碼中,我們使用了 jQuery 的 val() 方法來設(shè)置 input 的值。val() 方法可以接受一個字符串作為參數(shù),將其設(shè)置為 input 的值。
下面是一個更具體的例子。假設(shè)我們有一個 HTML 表單,其中包含一個用戶名和一個密碼輸入框:
<form> <label for="username">用戶名:</label> <input type="text" id="username" name="username"> <br><br> <label for="password">密碼:</label> <input type="password" id="password" name="password"> <br><br> <button id="login">登錄</button> </form>
現(xiàn)在我們可以使用 jQuery 來設(shè)置用戶名和密碼的值:
// 設(shè)置用戶名和密碼的值 $('#username').val('myUsername'); $('#password').val('myPassword');
在上面的代碼中,我們使用了選擇器來選取用戶名和密碼的 input 元素,并分別使用 val() 方法來設(shè)置它們的值。
總之,通過使用 jQuery 的 val() 方法,我們可以輕松設(shè)置 input 的值,從而實現(xiàn)更靈活的網(wǎng)頁開發(fā)。