Extract and set form values through the DOM—no frameworks required! https://github.com/TheoryOfNekomata/formxtra
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
TheoryOfNekomata c0d6405873 Add README 3 anni fa
cypress Implement cypress 3 anni fa
src Organize tests 3 anni fa
test Organize tests 3 anni fa
.gitignore Initial commit 3 anni fa
LICENSE Initial commit 3 anni fa
README.md Add README 3 anni fa
cypress.json Implement cypress 3 anni fa
jest.config.js Implement tests 3 anni fa
package.json Implement cypress 3 anni fa
tsconfig.json Implement tests 3 anni fa
yarn.lock Implement cypress 3 anni fa

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.