javascript - Jquery set select option by .val() does not fire on('change', ) - Stack Overflow

JS Fiddle<select id="panel" ><option value=1>One<option><option value=2

JS Fiddle

<select id="panel" >
    <option value=1>One</option>
    <option value=2>Two</option>
    <option value=3>Three</option>
</select> 
<button id="button">Click me</button> <br> 

$('#button').click(function(){
  $('#panel').val(3); 
}); 
$('#panel').on('change',function(){
  alert('Hi'); 
});


Does anybody know how to get those thing works?

JS Fiddle

<select id="panel" >
    <option value=1>One</option>
    <option value=2>Two</option>
    <option value=3>Three</option>
</select> 
<button id="button">Click me</button> <br> 

$('#button').click(function(){
  $('#panel').val(3); 
}); 
$('#panel').on('change',function(){
  alert('Hi'); 
});


Does anybody know how to get those thing works?

Share Improve this question edited Nov 1, 2017 at 13:29 phuwin asked Oct 7, 2015 at 12:14 phuwinphuwin 3,2705 gold badges27 silver badges49 bronze badges 1
  • 1 Things actually work as they are designed. Think about a situation when you programmatically change a value in an onchange-handler, that change would trigger a new onchange, the value is changed again ... – Teemu Commented Oct 7, 2015 at 12:22
Add a ment  | 

3 Answers 3

Reset to default 7

Additional you can use .trigger():

Description: Execute all handlers and behaviors attached to the matched elements for the given event type.

$('#button').click(function() {
  $('#panel').val(3).trigger("change");
});
$('#panel').on('change', function() {
  alert('Hi');
});
<script src="https://ajax.googleapis./ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<select id="panel">
  <option value=1>One</option>
  <option value=2>Two</option>
  <option value=3>Three</option>
</select>
<button id="button">Click me</button>
<!--click will change the select. But it doesnt fire the on change function. -->

You need to fire the event manually,

$('#panel').val(3).change();

Fiddle

In your case it won't trigger change event, it is assignment, you have to call change event like. Change as follows
You have to use like HTML:

<select class="panel" >
                                                                                   <option value="1">One</option>
    <option value="2">Two</option>
    <option value="3">Three</option>
                                                                                </select> 
<button id="button">Click me</button> <!--click will change the select. But it doesnt fire the on change function. -->

JQUERY:

$('#button').click(function(){
    $('.panel').val(3);
    $( ".panel" ).change();
});
 $( ".panel" ).change(function() {
  alert( "Handler for .change() called." );
});

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1741608542a4356316.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信