Get value select option JavaScript

jquery,javascript

jQuery select option by value

Select elements typically have two values that you want to access. First there's the value to be sent to the server, which is easy: Example

<select id="myselect">
    <option value="1">Mr</option>
    <option value="2">Mrs</option>
    <option value="3">Ms</option>
    <option value="4">Dr</option>
    <option value="5">Prof</option>
</select>

How to get value select option by jquery

$( "#myselect" ).val();
// => 1

Get selected text JavaScript

$( "#myselect option:selected" ).text();
// => "Mr"

Ref:: learn jquery

Có thể bạn đã miss một số snippets code

parse javascript Example

The JSON.parse() method parses a JSON string, constructing the JavaScript value or object described by the string

Câu hỏi phỏng vấn javascript - Verions đầy đủ

Câu hỏi phỏng vấn javascript, ở đây chúng tôi giới thiệu 10 source sẽ giúp bạn có được hàng trăm câu hỏi phỏng vấn trước khi bạn bắt đầu.

Toán tử trong javascript - Version đầy đủ

Toán tử trong javascript là một bước đệm cho việc học lập trình sau này. Và đây là version đầy đủ cho bạn.

javascript rand

The Math.random() function returns a floating-point, pseudo-random number in the range 0 to less than 1

Using promises to catch errors