表单重置 jQuery

//重置
$('.reset-bottom').click(function(){
$('.mui-input-clear').attr('value','');//text类型
$('input[name=sex]').removeAttr("checked");//radio类型
$('input[name=type]').removeAttr("checked");//radio类型
$('input[name=steelyard]').removeAttr("checked");//radio类型


$('input[type=checkbox]').removeAttr("checked");//复选框

});

原文地址:https://www.cnblogs.com/xzzzys/p/7500379.html