https://blog.csdn.net/weixin_41565034/article/details/80746813
myform 是form的id属性值
1.调用reset()方法
function fomrReset(){document.getElementById("myform").reset();}
2. 逐个清空input、select值
function resetAll() {$("#myform").find('input[type=text],select,input[type=hidden]').each(function() {$(this).val('');});}
3.排除法清空form表单
姓名:性别:男女