Polymer: manually submitting a form

拟墨画扇 提交于 2019-12-04 03:24:07

问题


In polymer I'm trying to manually submit a form. My form looks like this:

<form id="myForm" on-submit="{{ submitForm }}">
    <input class="text" value="{{ someValue}}">
    <button type="submit">Submit</button>
</form>

And in the polymer object I have:

submitForm: function(e) {
    e.preventDefault();
}

Whenever I try to do the following:

document.getElementById('myForm').submit();

the form totally ignores the on-submit attribute and posts the form to a new page.

I'm building a on-screen keyboard for anyone wondering why I would want to do this. I need to submit the form whenever someone hits the enter key on the on-screen keyboard.

Does anyone know why this happens?

A JSBin example to show you the exact problem (see the alerts): http://jsbin.com/wadihija/2/


回答1:


From the MDN page about submit:

The form's onsubmit event handler will not be triggered when invoking this method ... it is not guaranteed to be invoked by HTML user agents.

However, calling click on a submit type button seems to work. See here:

http://jsbin.com/tuxac/2/edit

Here is a modification of your jsbin that I believe does what you want:

http://jsbin.com/wadihija/6/edit




回答2:


Is this along the lines of what you're trying to do? This is a result of a key feature of Shadow DOM: Encapsulation. The elements in your polymer-element's template are not in the main document, and as such, are not available via document.getElementById() and the like.

You could instead call this.shadowRoot.getElementById() and it would work because this inside of your polymer-element's prototype is linked to the host element. Or even better, take advantage of the amazing features Polymer gives you for free. Polymer exposes this.$ to polymer-elements, which contains a key for every element in your template that has an ID! No method call needed, just use this.$.myForm.submit(). Here's the final jsbin.



来源:https://stackoverflow.com/questions/23151817/polymer-manually-submitting-a-form

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!