javascript - is there a defaultValue property for radio select? -
I'm wondering if there is a way to reset a radio for its basicly selected option The address of defaultValue
is, but is there a way to do that I can reset the radio to the page load on its original value?
I just do not want to select all the radios
> < P> Yes, radio input has default value
, but whatever you want is default checked
property:
$ ('Input [type = radio]'). Prop ('check', function () {return.defaultChecked;}); This is being said, you can use the reset
method's HTMLFormElement
object if you want to reset the form. : $ ('# formElement'). Get (0) .reset ();
Comments
Post a Comment