清除所有表单域后刷新页面(jquery)

时间:2012-04-14 02:00:38

标签: javascript jquery input refresh clear

清除所有表单字段后是否可以刷新页面?这是一个单独的功能还是可以添加到我现有的脚本中。

function clear_form_elements(ele) {
 $(ele).find(':input').each(function() {
 switch(this.type) {
    case 'password':
    case 'select-multiple':
    case 'select-one':
    case 'text':
    case 'textarea':
        $(this).val('');
        $(this).removeAttr("style");
        break;
    case 'checkbox':
    case 'radio':
        this.checked = false;
}
});

}

1 个答案:

答案 0 :(得分:0)

我不知道这是否真的有用。但是你也可以在jquery中这样做:

$('#PageRefresh').click(function() {

              location.reload();

    });

这很简单直接。