jQuery 清除表單欄位值

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