Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
383 views
in Technique[技术] by (71.8m points)

jquery - Change event doesn't get called when the value of <select> is set programmatically

Normally, when a user selects an item in a <select>, the 'change' event gets fired. However, when you change the value of the same <select> with $('select').val('something'), the event doesn't get fired.

I know I could do: $('select').val('something').trigger('change'); but that's not the problem I'm trying to solve...

Is there a way to get the change event working, without manually triggering it?

I put together a quick JsFiddle to better explain the problem, check it out:

http://jsfiddle.net/W723K/1/

Cheers

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

It's not possible, unless you manually trigger the change function. If you don't like typing that code several times, extend the jQuery object. Fiddle: http://jsfiddle.net/W723K/2/

(function($){
    $.fn.changeVal = function(value){
        return this.each(function(){
            $(this).val(value).trigger('change');
        });
    }
})(jQuery);

//Usage:
$('select').changeVal('something');

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...