jquery實現重置表單

lvzhou_MadSky發表於2014-04-29

<button class="reset" onclick="formReset()" value="Reset">重&nbsp;&nbsp;置</button>

<form id="form1" ></form>

function formReset() {
    $('#form1')[0].reset();
}

相關文章