javascript - How does jquery give the select option an event that is triggered when it is clicked, as shown in the figure. If you select a custom trigger time?
仅有的幸福2017-05-16 13:26:47
0
2
628
As shown in the picture, an event is triggered when the user selects customization. How to write it.
Select different events according to your actual business needs. The select tag is used here. It is recommended to use the change event. Example: $('.xx').change(function(){
$('.xx').on('change',function(){
})
Select different events according to your actual business needs. The select tag is used here. It is recommended to use the change event.
Example:
$('.xx').change(function(){
});