浏览代码

Improve README

Add usage instructions.
master
父节点
当前提交
e8942296a2
共有 1 个文件被更改,包括 14 次插入0 次删除
  1. +14
    -0
      README.md

+ 14
- 0
README.md 查看文件

@@ -23,6 +23,20 @@ The package can be found on:

## Usage

1. Lay out your input elements (all valid input types supported including `<select>` and `<textarea>`) then bind them
to a form:
* Put them inside a `<form>`.
* Alternatively, use the `form=""` attribute then specify the form `id` where they will be bound).
2. Add `name=""` attributes to your input elements.
3. Get your `<form>` element:
* Query the form directly.
* If you want to retrieve/set the form values through an individual input element (e.g. in the case of value change
events like `onchange`), use the `inputElement.form` attribute.
4. Use `getFormValues()` to retrieve all bound input elements' values, or `setFormValues()` to set them (setting only
some fields' values is supported).

### Example

For an example form:

```html


正在加载...
取消
保存