select,checkbox
select
js重置select使其选中第一个option
$("#classifyName")[0].options[0].selected = true
js获取select被选中的value值
$("#isRespond").find('option:selected').val()
js获取select被选中的文本值
$("#classifyName").find('option:selected').text()
清空option
document.getElementById("allarg1").options.length = 0
checkbox
获取checkbox是否被选中的值
$("#ischeckdate").prop("checked")