jquery select [code]//获取第一个option的值 $('#test option:first').val(); //最后一个option的值 $('#test option:last').val(); //获取第二个option的值 $('#test option:eq(1)').val(); //获取选中的值 $('#test').val(); $('#test option:selected').val(); //设置值为2的option为选中状态 $('#test').attr('value','2'); //设置第一个option为选中 $('#test option:last').attr('selected','selected'); $("#...
Django端代码
jquery对select操作 文章摘自:http://blog.sina.com.cn/s/blog_49cc672f0100cd28.html[code]//遍历option和添加、移除option function changeShipMethod(shipping){ var len = $("select[@name=ISHIPTYPE] option").length if(shipping.value != "CA"){ $("select[@name=ISHIPTYPE] option").each(function(){ if($(this).val() == 111){ $(this).remove(); } }); }else{ $("
jquery对select操作 [转] [code] //遍历option和添加、移除option function changeShipMethod(shipping){ var len = $("select[@name=ISHIPTYPE] option").length if(shipping.value != "CA"){ $("select[@name=ISHIPTYPE] option").each(function(){ if($(this).val() == 111){ $(this).remove(); } }); }else{ $("").appendTo($("select[@name=ISHIPTYPE]")); } } ...
jquery获取和设置select选项 http://blog.csdn.net/Feiin/article/details/3896937 jquery获取和设置select选项 获取select : 获取select 选中的 text : $("#ddlRegType").find("option:selected").text(); 获取select选中的 value: $("#ddlRegType ").val(); 获取select选中的索引: $("#ddlRegType ").get(0).selectedIndex; 设置select: 设置select 选中的索引: $("#ddlR...
转:yond
jquery 查找select ,并触发事件.
项目中,用jquery 查找select ,并触发事件. 记一笔.关键代码;[code]
var count=$("#drpCity option").length;
//查找城市
for(var i=0;i
jquery获取radio,select,checkbox的值-精简版
// 循环获取radio的值
Js代码[code]var level_important = 0;
var list = $("input[type='radio'][name='" + ("radio_level_important_" + id)
+ "']");
list.each(function() {
if ($(this).attr('checked') == "checked") {
level_important = $(this).val();
}
...
[code]一 、select
jquery获取select选择的Text和Value:
1. $("#select_id").change(function(){//code...}); //为select添加事件,当选择其中一项时触发
2. var checkText=$("#select_id").find("option:selected").text(); //获取select选择的Text
3. var checkValue=$("#select_id").val(); //获取select选择的Value
4. var checkIndex=$("#select_id ").get(0).selectedIndex; //获取select选择的索引值
5. var maxIndex...