.val() | JQuery API Documentation
Có thể bạn quan tâm
Example 1
Get the single value from a single select and an array of values from a multiple select and display their values.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | <!doctype html><html lang="en"><head> <meta charset="utf-8"> <title>val demo</title> <style> p { color: red; margin: 4px; } b { color: blue; } </style> <script src="https://code.jquery.com/jquery-3.7.1.js"></script></head><body> <p></p> <select id="single"> <option>Single</option> <option>Single2</option></select> <select id="multiple" multiple="multiple"> <option selected="selected">Multiple</option> <option>Multiple2</option> <option selected="selected">Multiple3</option></select> <script>function displayVals() { var singleValues = $( "#single" ).val(); var multipleValues = $( "#multiple" ).val() || []; // When using jQuery 3: // var multipleValues = $( "#multiple" ).val(); $( "p" ).html( "<b>Single:</b> " + singleValues + " <b>Multiple:</b> " + multipleValues.join( ", " ) );} $( "select" ).on( "change", displayVals );displayVals();</script> </body></html> |
Demo:
Từ khóa » Câu Lệnh Val Trong Jquery
-
.val() | Hàm JQuery | Tham Khảo JQuery | Học Web Chuẩn
-
Phương Thức Val() Trong JQuery | Lấy Giá Trị Thuộc Tính Value Của ...
-
.val() Trong JQuery - Hoclaptrinh
-
JQuery: Val() Method | V1Study
-
Sự Khác Biệt Giữa Val () Và Text () - HelpEx
-
Jquery .val () + = Thành Ngữ - HelpEx - Trao đổi & Giúp đỡ
-
JQuery Cơ Bản - Viblo
-
JQuery Selector - Viblo
-
Một Số Câu Lệnh Jquery Thường Dùng - FCWordpress
-
Tài Liệu Tìm Hiểu JQuery Dành Cho Người Mới Bắt đầu - SlideShare
-
Parent Find Input Value Js? How To Get The Parent Element Value ...
-
Code Web Làm Với Jquery Không Chạy - Programming - Dạy Nhau Học
-
JQuery Căn Bản - JQuery Selectors - ThachPham
-
Cách Lấy Giá Trị đã Chọn Trong Hộp Chọn (Select) Bằng JQuery