如何通过它的方法重置 polymer iron-autogrow-textarea 或 paper-textarea?
How to reset polymer iron-autogrow-textarea or paper-textarea through it's methods?
我可以通过将值设置为空字符串来清除 iron-autogrow-textarea,但我无法清除换行符或将其重置。我在键码输入上使用事件,它有效但留下了这个新行,我无法找到将 iron-autogrow-textarea 重置为其初始状态的方法。
如果可以用 paper-textarea 做任何类似的事情,我可以用它来代替。
感谢任何帮助。
以下信息写在自己的页面中,因此您需要更新:ironAutogrowTextarea.value
Imperatively updating ironAutogrowTextarea.value will update the
textarea.value
改为ironAutogrowTextarea.textarea.value
Imperatively updating ironAutogrowTextarea.textarea.value will update
the display, but not update the internal value
写了它的demo link:https://www.webcomponents.org/element/@polymer/iron-autogrow-textarea/demo/demo/index.html
我可以通过将值设置为空字符串来清除 iron-autogrow-textarea,但我无法清除换行符或将其重置。我在键码输入上使用事件,它有效但留下了这个新行,我无法找到将 iron-autogrow-textarea 重置为其初始状态的方法。
如果可以用 paper-textarea 做任何类似的事情,我可以用它来代替。
感谢任何帮助。
以下信息写在自己的页面中,因此您需要更新:ironAutogrowTextarea.value
Imperatively updating ironAutogrowTextarea.value will update the textarea.value
改为ironAutogrowTextarea.textarea.value
Imperatively updating ironAutogrowTextarea.textarea.value will update the display, but not update the internal value
写了它的demo link:https://www.webcomponents.org/element/@polymer/iron-autogrow-textarea/demo/demo/index.html