zoukankan      html  css  js  c++  java
  • 扩展对input的一些方法(练习jQuery插件)

    /* ================================================================================
            File:jquery.hy.input.js
             Desc: 扩展对input的一些方法
      
             Called by:   
                   
             Auth: 大气象
             Date: 2009-10-30
     ================================================================================
             Change History
     ================================================================================
             Date:        Author:                Description:
             --------    --------            -------------------
        
     ================================================================================
     Copyright (C) 1992-2009 Hongye Corporation
     ================================================================================
    */

    //扩展jQuery对象方法
    jQuery.fn.extend({
        
    /*===========================================================================
          功能描述:单击时清空文本框
          调用方法:
          $(function(){ jQuery("#txt").txtClear();} );
        
    */
        txtClear:
    function(){
            jQuery(
    this).click(function(){
                jQuery(
    this).val('');
            });
        },
        
    /*===========================================================================
          功能描述:选择全选
          调用方法:
              情形
              <div id="chkBoxes">
                  <input id="Checkbox1" type="checkbox" />
                  <input id="Checkbox2" type="checkbox" />
              </div>
              调用
              $("#chkBoxes input[type=checkbox]").check();
        
    */
        check:
    function(){
            
    return this.each(function(){this.checked=true;});
        },
        
    /*===========================================================================
          功能描述:取消选择
          调用方法:
          $("#chkBoxes input[type=checkbox]").uncheck();
        
    */
        uncheck:
    function(){
            
    return this.each(function(){this.checked=false;});
        }
    });
  • 相关阅读:
    希望走过的路成为未来的基石
    第三次个人作业--用例图设计
    第二次结对作业
    第一次结对作业
    第二次个人编程作业
    第一次个人编程作业(更新至2020.02.07)
    Springboot vue 前后分离 跨域 Activiti6 工作流 集成代码生成器 shiro权限
    springcloud 项目源码 微服务 分布式 Activiti6 工作流 vue.js html 跨域 前后分离
    spring cloud springboot 框架源码 activiti工作流 前后分离 集成代码生成器
    java代码生成器 快速开发平台 二次开发 外包项目利器 springmvc SSM后台框架源码
  • 原文地址:https://www.cnblogs.com/greatverve/p/1592970.html
Copyright © 2011-2022 走看看