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;});
        }
    });
  • 相关阅读:
    js与设计模式访问者模式
    js与设计模式外观模式
    由一个小Bug推及ie及ff的dom元素差异
    构建一个前端库做一个富客户端的基类
    [原创]LINQ 学习系列教程文章索引
    Sublime Text 2 性感无比的代码编辑器!程序员必备神器!跨平台支持Win/Mac/Linux
    Ubuntu分区
    非常不错的WCF入门文章,来自Artech
    助记:MIME类型
    F#学习存疑求解答:关于使用Cotinuation仍然堆栈溢出的问题
  • 原文地址:https://www.cnblogs.com/greatverve/p/1592970.html
Copyright © 2011-2022 走看看