2016-05-04 21 views

Antwort

1

geben ihm einen Versuch mit trigger statt, es für mich gearbeitet

this.$('input').focusout(); 
    this.$('input').blur(); 
    this.$('input').trigger('focusout'); 
    this.$('input').trigger('blur'); 
    this.$('input').trigger('keyup'); // another event that you can trigger 

more information