Extract and set form values through the DOM—no frameworks required! https://github.com/TheoryOfNekomata/formxtra
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 
TheoryOfNekomata c0d6405873 Add README hace 3 años
cypress Implement cypress hace 3 años
src Organize tests hace 3 años
test Organize tests hace 3 años
.gitignore Initial commit hace 3 años
LICENSE Initial commit hace 3 años
README.md Add README hace 3 años
cypress.json Implement cypress hace 3 años
jest.config.js Implement tests hace 3 años
package.json Implement cypress hace 3 años
tsconfig.json Implement tests hace 3 años
yarn.lock Implement cypress hace 3 años

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.