jquery中常用的取值方法
當(dāng)前位置:點(diǎn)晴教程→知識(shí)管理交流
→『 技術(shù)文檔交流 』
獲取一組radio被選中項(xiàng)的值
var item = $(’input[@name=items][@checked]‘).val(); 獲取select被選中項(xiàng)的文本 var item = $(”select[@name=items] option[@selected]“).text(); select下拉框的第二個(gè)元素為當(dāng)前選中值 $(’#select_id’)[0].selectedIndex = 1; radio單選組的第二個(gè)元素為當(dāng)前選中值 $(’input[@name=items]‘).get(1).checked = true; 文本框,文本區(qū)域:$(”#txt”).attr(”value”); 多選框checkbox:$(”#checkbox_id”).attr(”value”); 單選組radio: $(”input[@type=radio][@checked]“).val(); 下拉框select: $(’#sel’).val(); 控制表單元素: 文本框,文本區(qū)域:$(”#txt”).attr(”value”,”);//清空內(nèi)容 $(”#txt”).attr(”value”,’11′);//填充內(nèi)容 多選框checkbox: $(”#chk1″).attr(”checked”,”);//不打勾 $(”#chk2″).attr(”checked”,true);//打勾 if($(”#chk1″).attr(’checked’)==undefined) //判斷是否已經(jīng)打勾 單選組radio: $(”input[@type=radio]“).attr(”checked”,’2′);//設(shè)置value=2的項(xiàng)目為當(dāng)前選中項(xiàng) 下拉框select: $(”#sel”).attr(”value”,’-sel3′);//設(shè)置value=-sel3的項(xiàng)目為當(dāng)前選中項(xiàng) $(”11112222″).appendTo(”#sel”)//添加下拉框的option $(”#sel”).empty();//清空下拉框 該文章在 2010/8/18 14:18:23 編輯過 |
關(guān)鍵字查詢
相關(guān)文章
正在查詢... |