简体   繁体   中英

Backbone.js text change event

How do I trigger a change event on textbox in a backbone view?

I tried:

events: {
    "onChanged input.autocomplete": "update"
}

update didn't get fired. I also tried change .

What is the name of the event for textchange?

This should work:

events: {
    "change input.autocomplete": "update"
}
  1. Is the selector (input.autocomplete) correct?
  2. Change fires on blur, not on keydown - does this agree with your requirement?

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM