► 下拉式選單:
jQuery EasyUI ValidateBox 內容設定 http://www.jeasyui.com/documentation/validatebox.php
清除DropDownList,用selectedIndex 方式去清除
$('#' + strTableID + ' select').each(function () { this.selectedIndex = 0; });
或是用option而且取index為零的方式,去清除把下拉式選單歸成0
► Textboxall_ddls.each(function () { $(this).find("option").each(function (Idx) { if (Idx==0) { $(this).attr("selected", true); } });
► Checkbox/Textarea$("input[type=textbox]").val(""); $("input").val(""); //所有 input
► RadioButton$("input[type='checkbox']").attr("checked", false); $('textarea').attr("value", "");
var all = $("input[type=radio]"); all.each(function () { var rbl_name = $(this).attr("name"); $("input[type=radio][name*='" + rbl_name + "']:first").attr("checked", true) });