I am dynamically generating a form. For simplicity's sake assume it's a login form with email/password. The form is submitted, but onsubmit it fires an AJAX request that handles the actual login and the submit event is cancelled (`e.preventDefault()`).
I use `e.preventDefault()` to cancel the default action of the form, that is, _go to the page in 'action'_ but this also seems to cancel the autocomplete detection of the browser.
I think you need to fullfill several requirements for the native autocomplete to work:
- Your input field `type="text"` must have a `name`
- The form must be submitted _
以上就是browser native autocomplete for dynamically generated forms (handled with ajax)的详细内容,更多请关注web前端其它相关文章!