jquery 遍历表格.doc_第1页
jquery 遍历表格.doc_第2页
jquery 遍历表格.doc_第3页
jquery 遍历表格.doc_第4页
全文预览已结束

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

1. function getTableCell (obj)var _arrCellOnes=;Var_oTBody=obj.TBodies?obj.TBodies:obj;var_oTRows=_oTBody.rows;for(i=0;i_oTRows.length;i+)if(_oTRowsi.cells0) _arrCellOnes.push(_oTRowsi.cells0.innerHTML); return _arrCellOnes;var arrCells= getTableCell($(#tb);/用到jQuery了 alert(arrCells);2.$(function()Var arr=null;$(#Btn1).click(function()Arr=$(table inputtype=checkbox:checked).map(function()/返回jquery对象Var obj=$(this).parent().next();Return obj.text(),obj.next().text(),obj.text(),obj.parent().next().text();).get();/get方法返回ArrayVar str=;For(var i=0;iarr.length;i+)If(i%2=1)Str+=arri+nr;ElseStr+=arri+,;Alert(str);););$(table).find(tr).each(function() $(this).find(td).each(function() alert($(this).text(); ); );$(document).ready(function() $(#tb tr).each(function()var text = $(this).children(td:first).text();alert(text=+text); ););*全选/反选*jQuery(#cartTB).find(tr).each(function() $(this).children(td:first).children(inputtype=checkbox).attr(checked,jQuery(#ckAll).attr(checked); );*表格单选*function check(obj) jQuery(#TBRoletbody).find(tr).each(function() /1、var ck = $(this).children(td:first).children(inputtype=checkbox);/if (ck0 != obj)/ck.attr(checked, false);/2、inputname:RoleFirst inputname=RoleFirstvar ck = $(this).children(td:first).children(inputname:RoleFirst);if (ck0 != obj)ck.attr(checked, false););*3.jQuery获取,遍历和操作表单元素Select,checkbox,radio 收藏 jQuery获取Select选择的Text和Value: 语法解释: $(#select_id).change(function()/code.); /为Select添加事件,当选择其中一项时触发 var checkText=$(#select_id).find(option:selected).text(); /获取Select选择的Text var checkValue=$(#select_id).val(); /获取Select选择的Value var checkIndex=$(#select_id ).get(0).selectedIndex; /获取Select选择的索引值 var maxIndex=$(#select_id option:last).attr(index); /获取Select最大的索引值 jQuery设置Select选择的 Text和Value: 语法解释: $(#select_id ).get(0).selectedIndex=1; /设置Select索引值为1的项选中 $(#select_id ).val(4); / 设置Select的Value值为4的项选中 $(#select_id optiontext=jQuery).attr(selected, true); /设置Select的Text值为jQuery的项选中 jQuery添加/删除Select的Option项:语法解释: $(#select_id).append(Text); /为Select追加一个Option(下拉项) $(#select_id).prepend(请选择); /为Select插入一个Option(第一个位置) $(#select_id option:last).remove(); /删除Select中索引值最大Option(最后一个) $(#select_id optionindex=0).remove(); /删除Select中索引值为0的Option(第一个) $(#select_id optionvalue=3).remove(); /删除Select中Value=3的Option $(#select_id optiontext=4).remove(); /删除Select中Text=4的Option /SAL2928/archive/2008/10/28/1321285.html jquery radio取值,checkbox取值,select取值,radio选中,checkbox选中,select选中,及其相关 获 取一组radio被选中项的值 var item = $(inputname=itemschecked).val(); 获 取select被选中项的文本 var item = $(selectname=items optionselected).text(); select下拉框的第二个元素为当前选中值 $(#select_id)0.selectedIndex = 1; radio单选组的第二个元素为当前选中值 $(inputname=items).get(1).checked = true; 获取值: 文本框,文本区域:$(#txt).attr(value); 多选框 checkbox:$(#checkbox_id).attr(value); 单选组radio: $(inputtype=radiochecked).val(); 下拉框select: $(#sel).val(); 控制表单元素: 文本框,文本区域:$(#txt).attr(value,);/清空内容 $(#txt).attr(value,11);/填充内容 多选框checkbox: $(#chk1).attr(checked,);/不打勾 $(#chk2).attr(checked,true);/打勾 if($(#chk1).attr(checked)=undefined) /判断是否已经打勾 单选组 radio: $(inputtype=radio).attr(checked,2);/设置value=2的项目为当前选中项 下拉框 select: $(#sel).attr(value,-sel3);/设置value=-sel3的项目为当前选中项 $(11112222).appendTo(#sel)/添加下拉框的option $(#sel).empty();/清空下拉框 - /遍历option和添加、移除option function changeShipMethod(shipping) var len = $(selectname=ISHIPTYPE option).length if(shipping.value != CA) $(selectname=ISHIPTYPE option).each(function() if($(this).val() = 111) $(this).remove(); ); else $(UPS Ground).appendTo($(selectname=ISHIPTYPE); /取得下拉選單的選取值 $(#testSelect option:selected).text(); 或$(#testSelect).find(option:selected).text(); 或$(#testSelect).val(); / 记 性不好的可以收藏下: 1,下拉框: var cc1 = $(.formc selectname=country optionselected).text(); /得到下拉菜单的选中项的文本(注意中间有空格) var cc2 = $(.formc selectname=country).val(); /得到下拉菜单的选中项的值 var cc3 = $(.formc selectname=country).attr(id); /得到下拉菜单的选中项的ID属性值 $(#select).empty();/清空下拉框 /$(#select).html(); $(1111).appendTo(#select)/添加下拉框的option 稍微解释一下: selectname=country optionselected 表示具有name 属性,并 且该属性值为country 的select元素 里面的具有selected 属性的option 元素;可以看出有开头的就表示后面跟 的是属性。 2,单选框: $(inputtype=radiochecked).val(); /得到单选框的 选中项的值(注意中间没有空格) $(inputtype=radiovalue=2).attr(checked,checked); /设置单选框value=2的为选中状态.(注意中间没有空格) 3,复选框: $(inputtype=checkboxchecked).val(); /得到复选框的选中的第一项的值 $(inputtype=checkboxchecked).each(function() /由于复选框一般选中的是多个,所以可以循环输出 alert($(this).val(); ); $(#chk1).attr(checked,);/不打勾 $(#chk2).attr(checked,true);/ 打勾 if($(#chk1).attr(checked)=undefined) /判断是否已经打勾 当然jquery的选择器是强大的. 还有很多方法. aaass 11 22 33 44 55 66 jquery radio取值,checkbox取值,select取值,radio选中,checkbox选中,select选中,及其相关获取一组radio被选中 项的值 var item = $(inputname=itemschecked).val(); 获取select被选 中项的文本 var item = $(selectname=items optionselected).text(); select 下拉框的第二个元素为当前选中值 $(#select_id)0.selectedIndex = 1; radio单选组的第二个 元素为当前选中值 $(inputname=items).get(1).checked = true; 获取值:文本 框,文本区域:$(#txt).attr(value);多选框 checkbox:$(#checkbox_id).attr(value);单选组radio: $(inputtype=radiochecked).val(); 下拉框select: $(#sel).val(); 控 制表单元素:文本框,文本区域:$(#txt).attr(value,);/清空内容 $(#txt).attr(value,11);/ 填充内容多选框checkbox: $(#chk1).attr(checked,);/不打勾 $(#chk2).attr(checked,true);/ 打勾 if($(#chk1).attr(checked)=undefined) /判断是否已

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论