Extract and set form values through the DOM—no frameworks required! https://github.com/TheoryOfNekomata/formxtra
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
TheoryOfNekomata c0d6405873 Add README há 3 anos
cypress Implement cypress há 3 anos
src Organize tests há 3 anos
test Organize tests há 3 anos
.gitignore Initial commit há 3 anos
LICENSE Initial commit há 3 anos
README.md Add README há 3 anos
cypress.json Implement cypress há 3 anos
jest.config.js Implement tests há 3 anos
package.json Implement cypress há 3 anos
tsconfig.json Implement tests há 3 anos
yarn.lock Implement cypress há 3 anos

README.md

get-form-values

Get the value of a form using HTMLFormElement.elements.

Usage

import getFormValues from '@theoryofnekomata/get-form-values';

const form = document.getElementById('form')

// optional, but just in case there are multiple submit buttons in the form,
// individual submitters can be considered
const submitter = form.querySelector('[type="submit"]')

const values = getFormValues(form, submitter)

Tests

The library has been tested on JSDOM through Jest, and the real DOM using Cypress.