form常用方法收集
**# 常用form方法 **
$("input[name='layuiTreeCheck_5']").prop("disabled",true)
$(':input', '#myform').not(':button, :submit, :reset, :hidden,:radio')
.val('').removeAttr('checked').removeAttr('selected');
$("#myform").find('input[type=text],select,input[type=hidden]').each(function() {
$(this).val('');
});
document.getElementById("myform").reset();