Extract and set form values through the DOM—no frameworks required! https://github.com/TheoryOfNekomata/formxtra
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 
TheoryOfNekomata c0d6405873 Add README vor 3 Jahren
cypress Implement cypress vor 3 Jahren
src Organize tests vor 3 Jahren
test Organize tests vor 3 Jahren
.gitignore Initial commit vor 3 Jahren
LICENSE Initial commit vor 3 Jahren
README.md Add README vor 3 Jahren
cypress.json Implement cypress vor 3 Jahren
jest.config.js Implement tests vor 3 Jahren
package.json Implement cypress vor 3 Jahren
tsconfig.json Implement tests vor 3 Jahren
yarn.lock Implement cypress vor 3 Jahren

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.