jQuery 扩展对input的一些操作方法_jquery
程序员文章站
2022-04-29 11:47:22
...
复制代码 代码如下:
/* ================================================================================
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('');
});
},
/*===========================================================================
功能描述:选择全选
调用方法:
情形
调用
$("#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;});
}
});
推荐阅读
-
jQuery 对input的限制-20130727
-
对input【text】的值在jquery中的html()方法在Firefox中得出来为空_html/css_WEB-ITnose
-
jquery对所有input type=text的控件赋值实现方法
-
对input【text】的值在jquery中的html()方法在Firefox中得出来为空_html/css_WEB-ITnose
-
jquery对table中数据的操作方法详解
-
jQuery 扩展对input的一些操作方法_jquery
-
对jQuery的事件绑定的一些思考(补充)_jquery
-
关于jQuery中attr方法和prop方法获取input的checked属性操作方法
-
jquery对所有input type=text的控件赋值实现方法
-
对jQuery的事件绑定的一些思考(补充)_jquery