Extract and set form values through the DOM—no frameworks required! https://github.com/TheoryOfNekomata/formxtra
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
TheoryOfNekomata c0d6405873 Add README 3年前
cypress Implement cypress 3年前
src Organize tests 3年前
test Organize tests 3年前
.gitignore Initial commit 3年前
LICENSE Initial commit 3年前
README.md Add README 3年前
cypress.json Implement cypress 3年前
jest.config.js Implement tests 3年前
package.json Implement cypress 3年前
tsconfig.json Implement tests 3年前
yarn.lock Implement cypress 3年前

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.