Lines Matching refs:form
1 # \<form> Development
3 …form>** component allows the content in [\<Input>](../reference/apis-arkui/arkui-js/js-components-…
5 ## Creating a \<form> Component
7 Create a **\<form>** component in the .hml file under **pages/index**.
11 <form style="width: 100%; height: 20%">
13 </form>
34 To implement the zoom effect after a form is clicked, add the **click-effect** attribute to the **\…
38 <form id="formId" class="formClass" click-effect="spring-large">
40 </form>
75 To submit or reset a form, add the **submit** and **reset** events.
80 <form onsubmit='onSubmit' onreset='onReset' class="form">
92 </form>
106 .form{
139 Select an option and submit or reset the form data.
141 …e the **onsubmit** and **onreset** events of the **\<form>** component to submit and reset the for…
146 <form onsubmit="formSubmit" onreset="formReset">
174 </form>