/* ========== === ============================================== === =================
ファイル:jquery.hy.input.js
説明: 入力用にいくつかのメソッドを拡張
呼び出し元:
認証: Big Weather
日付: 2009-10-30
================================ == ==============================================
変更履歴
=========================================== == ==================================
日付: 著者: 説明:
-- -- ---- -------- -------------------
============== == =============================================== == ==============
Copyright (C) 1992-2009 Hongye Corporation
=================== === ============================================== === =========
*/
//拡張 jQuery オブジェクト メソッド
jQuery.fn.extend({
/*========= === ============================================== === =============
関数の説明: クリックするとテキストボックスをクリア
呼び出しメソッド:
$(function(){ jQuery("#txt") .txtClear( );} );
*/
txtClear:function(){
jQuery(this).click(function(){
jQuery(this).val('');
});
}、
/*================================ ====== ======================================
機能の説明:すべて選択
呼び出しメソッド:
状況
id="Checkbox2" type="checkbox" />
$("#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;})
}
});