Shenglian / -WORK_TIP

工作上小技巧
4 stars 1 forks source link

[js] Form Object #139

Open Shenglian opened 6 years ago

Shenglian commented 6 years ago
const Form = {
  acceptChartset: 'Sets or returns the value of the accept-charset attribute in a form',
  action: 'Sets or returns the value of the action attribute in a form',
  autocomplete: 'Sets or returns the value of the autocomplete attribute in a form',
  encoding: 'Alias of enctype',
  enctype: 'Sets or returns the value of the enctype attribute in a form',
  length: 'Returns the number of elements in a form',
  method: 'Sets or returns the value of the method attribute in a form',
  name: 'Sets or returns the value of the name attribute in a form',
  noValidate: 'Sets or returns whether the form-data should be validated or not, on submission',
  target: 'Sets or returns the value of the target attribute in a form',
  reset: () => 'Resets a form',
  submit: () => 'Submits a form'
}