`
lijuanabc
  • 浏览: 125833 次
社区版块
存档分类
最新评论

Clear a form with jQuery

 
阅读更多
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('');
break;
case 'checkbox':
case 'radio':
this.checked = false;
}
});

}



原文链接:http://www.electrictoolbox.com/jquery-clear-form/

分享到:
评论

相关推荐

    Responsive Web Design with jQuery(PACKT,2013)

    “Responsive Web Design with jQuery” is a practical book focused on saving your development time using the useful jQuery plugins made by the frontend community. Follow the chapters, and learn to ...

    jQuery清除插件Add-Clear

    Add-Clear是一个jQuery插件,增加了你它适用于任何输入清除按钮。它清除值,并将焦点返回到该字段。浏览器要求ie9或以上版本。演示地址:http://www.jq22.com/jquery-info397

    jquery datepicker today clear 实现 (日期区间选择)

    jquery datepicker today clear 扩展实现,全网惟一资源。 当时项目要用,在网上没找到现成的,找到的都是需要修改源代码的,自己最后看源码实现的扩展,没有污染源码,如果项目有需要,拿去直接用就行了。 而且日期...

    jQuery1.3withPHP英文pdf版最新版本

    推荐使用foxit reader,不是中文版都建议用绿色的这款。 Enhance your ...Complete examples of PHP and jQuery with clear explanations No JavaScript expertise or jQuery experien

    [jQuery] jQuery 移动网络应用开发 核心技术 第1版 (英文版)

    Create websites that work beautifully on a wide range of mobile devices with jQuery mobile Learn to prepare your jQuery mobile project by learning through three sample applications Packed with easy to...

    Crystal Clear A Human-Powered Methodology for Small Teams [CHM]

    Addison.Wesley.Crystal.Clear.A.Human.Powered.Methodology.for.Small.Teams.Oct.2004 Carefully researched over ten years and eagerly anticipated by the agile community, Crystal Clear: A Human-Powered ...

    jQAPI - Alternative jQuery Documentation - For Version 1.7

    The jQuery documentation is great, very complete, nicely written and with a lot of examples and demos. The only thing that bugs me is the way we have to find the right documentation for what we search...

    asp+jquery

    cmd.Parameters.Clear cmd.Parameters.Append cmd.CreateParameter("@Field1", adVarChar, adParamInput, 50, Request.QueryString("searchTerm")) Set rs = cmd.Execute ``` 2. jQuery异步请求:使用jQuery的$.ajax...

    jquery上传文件插件filestyle

    - **事件处理**:提供各种事件回调函数,如`onClear`(清除文件时触发)、`onSubmit`(提交文件时触发)等,便于实现复杂的交互逻辑。 7. **兼容性**:考虑到广泛的应用场景,jQuery Filestyle通常会努力保持对...

    jquery.timers.js

    **jQuery Timers 插件详解** 在Web开发中,JavaScript的时间管理和定时任务处理是不可或缺的部分。jQuery库,作为广泛使用的JavaScript库,虽然提供了基础的定时功能,但有时我们需要更高级和灵活的定时器管理。这...

    JQuery信息提示框插件 jquery.toast.js 的使用

    4. **关闭提示**:可以使用 `.toast('clear')` 来清除所有正在显示的提示,或者指定一个提示 ID 来关闭特定提示。 **示例代码** ```javascript $(document).ready(function() { $.toast({ type: 'success', ...

    jquerymobile制作的各种漂亮界面源代码

    表单元素可以通过`data-clear-btn="true"`添加清除按钮,提高用户体验。 对于数据绑定和事件处理,jQuery Mobile提供了便捷的方法。通过`<a>`标签的`data-rel="back"`属性可以实现页面间的导航,而`$(document).on...

    jquery mobile 1.4.5demo和说明

    支持 data-mini 和 data-theme 属性进行样式定制,data-clear-btn 添加清除按钮。 4. **主题系统**:通过 data-theme 属性定义组件颜色主题,预设多种主题色,方便开发者快速调整界面风格。 5. **触发动画**:默认...

    jQuery mobile图画板

    《jQuery Mobile 图画板详解与应用实践》 在数字化时代,网页交互的丰富性和多样性日益增强,其中,图画板功能成为许多应用场景中的重要元素。jQuery Mobile,作为一个强大的移动Web开发框架,提供了丰富的组件和...

    jQueryTimers

    jQuery Timers 是一款专为 jQuery 设计的插件,它扩展了原生JavaScript中的setTimeout和setInterval函数,提供了更方便、更强大的定时器管理功能。这个插件的主要目的是简化在JavaScript和jQuery应用中处理定时任务...

    简洁美观的jQuery计算器插件

    这部分通常包括多个函数,如`addNumber()`, `calculate()`, `clearScreen()`等,它们根据用户操作进行调用。 4. **初始化插件**:在页面加载完成后,使用`$(document).ready()`或者`$(function() {...})`来确保所有...

    jQuery教程14个实用的jQuery技巧

    $('#testform input.clear').each(function () { // 使用 data() 存储原始值 $(this).data("txt", $.trim($(this).val())); }).focus(function () { // 如果输入框中的值与其原始值相同,则清空该输入框 if ($...

    前端学习clear清除

    为了使新元素`div.c`不与`div.a`发生重叠,我们可以设置`clear:left`,这会使得`div.c`位于`div.a`的下方而不是旁边。具体实现如下: ```html ;"> <div class="a" style="width: 100px; height: 100px; border: ...

Global site tag (gtag.js) - Google Analytics