//重置
$('.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");//复选框
});