Sfoglia il codice sorgente

Improve README

Add usage instructions.
master
parent
commit
e8942296a2
1 ha cambiato i file con 14 aggiunte e 0 eliminazioni
  1. +14
    -0
      README.md

+ 14
- 0
README.md Vedi File

@@ -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


Caricamento…
Annulla
Salva