2011年1月14日

jquey checkbox全选,反选

摘要: jquey全选下拉框 序号姓名手机号码电话号码电子邮件分组 5+8613905740066+8613905740066同学 5692403客户 5大娘水饺朋友 5郑麻将客户 5郑敏客户 5郑银行客户 5中山饭店客户 5钟媒气客户 5钟益明客户 5周常春客户view sourceprint?01$.fn.checkbox = function(){ 02var hand = this; 03/** 04* 切换全选/反选 05* 06* @example $("#checkAll").checkbox().toggle($("input[name='contactIds']")); 07*/08 阅读全文

posted @ 2011-01-14 20:08 senly 阅读(423) 评论(0) 推荐(0) 编辑

Jquery在光标位置插入内容

摘要: IE下可以通过document.selection.createRange();来实现,而Firefox(火狐)浏览器则 需要首先获取光标位置,然后对value进行字符串截取处理(function($){ 02$.fn.extend({ 03insertAtCaret: function(myValue){ 04var $t=$(this)[0]; 05if (document.selection) { 06this.focus(); 07sel = document.selection.createRange(); 08sel.text = myValue; 09this.focus(); 阅读全文

posted @ 2011-01-14 20:06 senly 阅读(417) 评论(0) 推荐(0) 编辑

导航