How to get the display value of Select using javascript

前端 未结 3 1196
闹比i
闹比i 2021-02-14 04:26

  
  
  

jQuery:

$(function() { // on load
  var $sel = $("#Example");
  $sel.on("change",function() {
    var value = $(this).val();
    var text = $("option:selected", this).text();
    console.log(value,text)
  }).trigger("change"); // initial call
});

提交回复
热议问题