程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> jQuery中的RadioButton,input,CheckBox取值賦值實現代碼

jQuery中的RadioButton,input,CheckBox取值賦值實現代碼

編輯:關於PHP編程

1、jquery 獲取單選組radio
$("input[name='name']:checked").val();

2、jquery獲取radiobutton的下一個值
$("input[name='name']:checked").next().text()
$("input[name='name']:checked").val()

3、jquery 獲取input的值
$('#id').val()

4、jquery判斷多選框checkbox
$("#id:checkbox").attr("checked")
取值 $("#id").attr("value");
賦值則是在text()、val()裡面直接給值

JQUERY如何獲取text,areatext,radio,checkbox,select值?
$("input").val();
$("textarea").text();
$("select").val();

控制表單元素:
文本框,文本區域:$("#txt").attr("value",'');//清空內容
$("#txt").attr("value",'11');//填充內容
多選框checkbox: $("#chk1").attr("checked",'');//不打勾
$("#chk2").attr("checked",true);//打勾
if($("#chk1").attr('checked')==undefined) //判斷是否已經打勾

單選組radio: $("input[@type=radio]").attr("checked",'2');//設置value=2的項目為當前選中項

下拉框select: $("#sel").attr("value",'-sel3');//設置value=-sel3的項目為當前選中項
$("<option value='1'>1111</option><option value='2'>2222</option>").appendTo("#sel")//添加下拉框的option
$("#sel").empty();//清空下拉框

jQuery 獲取和設置select下拉框的值文章分類:.net編程

獲取Select :
獲取select 選中的 text :
$("#ddlRegType").find("option:selected").text();

獲取select選中的 value:
$("#ddlRegType ").val();

獲取select選中的索引:
$("#ddlRegType ").get(0).selectedIndex;

設置select:
設置select 選中的索引:
$("#ddlRegType ").get(0).selectedIndex=index;//index為索引值

設置select 選中的value:
$("#ddlRegType ").attr("value","Normal“);
$("#ddlRegType ").val("Normal");
$("#ddlRegType ").get(0).value = value;

設置select 選中的text:
var count=$("#ddlRegType option").length;
for(var i=0;i<count;i++)
{ if($("#ddlRegType ").get(0).options[i].text == text)
{
$("#ddlRegType ").get(0).options[i].selected = true;
break;
}
}
$("#select_id option[text='jQuery']").attr("selected", true);

設置select option項:
$("#select_id").append("<option value='Value'>Text</option>"); //添加一項option
$("#select_id").prepend("<option value='0'>請選擇</option>"); //在前面插入一項option
$("#select_id option:last").remove(); //刪除索引值最大的Option
$("#select_id option[index='0']").remove();//刪除索引值為0的Option
$("#select_id option[value='3']").remove(); //刪除值為3的Option
$("#select_id option[text='4']").remove(); //刪除TEXT值為4的Option

清空 Select:
$("#ddlRegType ").empty();

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved