1.下拉框 select : 移除option $("#ID option").each(function(){ if($(this).val() == 111){ $(this).remove(); } }); 添加option $("<option value='111'>UPS Ground< ...
1.下拉框 select :
移除option
$("#ID option").each(function(){ if($(this).val() == 111){ $(this).remove(); } });
添加option
$("<option value='111'>UPS Ground</option>").appendTo($("#ID"));
取得下拉選單的選取值
//取下拉選中的文本
$('#testSelect option:selected').text(); $("#testSelect").find('option:selected').text();
document.all.objSelect.options[document.all.objSelect.selectedIndex].text; //js操作 objSelect為select的name
//取得下拉選中值 $("#testSelect").val();
//js操作
document.getElementById('objSelect').value=2;
document.all.objSelect.value;
根據option的值選中下拉框
$('#testSelect').val('111');
document.all.objSelect.value = objItemValue; //js操作 objSelect為select的name或者id
document.getElementById('sel').value=objItemValue;
select下拉框的第二個元素為當前選中值
$('#select_id')[0].selectedIndex = 1;
2,單選框 radio :
$("input[type=radio][checked]").val(); //得到單選框的選中項的值(註意中間沒有空格)
$(':radio[name="radio"]:checked').val();//第二種方法
$("input[type=radio][value=2]").attr("checked",'checked'); //設置單選框value=2的為選中狀態.(註意中間沒有空格)
$(':radio[value="2"]').attr('checked','checked');
radio單選組的第二個元素為當前選中值
$("input[name='items']").get(1).checked = true;
3,覆選框 checkbox :(其它寫法參見上面:radio)
$("input[type='checkbox'][checked]").val(); //得到覆選框的選中的第一項的值 $("#chk1").attr("checked",'');//不打勾 $("#chk2").attr("checked",true);// 打勾 //全選/不選
$("#selectAll").bind('click',function(){
var sa = $(this).attr("checked");
$("input[name='sel[]']").each(function(){
this.checked=sa;
});
});
4,輸入框 input :
$(':input[name="keyword"]').val();//根據name值取得值
5,文本框 textarea :
固定文本框大小: <textarea name="123" style="resize:none;"></textarea>