首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

jquery征集表单值

2012-08-21 
jquery收集表单值1,收集checkbox的值//一、最基本//valuevar work_area $(#outsource_work_area).val()

jquery收集表单值
1,收集checkbox的值


//一、最基本//valuevar work_area = $("#outsource_work_area").val();//textvar s_idc_name = $("#dropdownlist_s_idc_id").find("option:selected").text();//二、操作optionvar option = $("#scheduling_user_id option[value="+user_id+"]");var display_name = option.text();option.remove();//jQuery添加/删除Select的Option项:$("#select_id").append("<option value='Value'>Text</option>");  //为Select追加一个Option(下拉项)$("#select_id").prepend("<option value='0'>请选择</option>");  //为Select插入一个Option(第一个位置)$("#select_id option:last").remove();  //删除Select中索引值最大Option(最后一个)$("#select_id option[index='0']").remove();  //删除Select中索引值为0的Option(第一个)$("#select_id option[value='3']").remove();  //删除Select中Value='3'的Option$("#select_id option[text='4']").remove();  //删除Select中Text='4'的Option//三、遍历optionvar id = $(this).attr("user_id");var name = $(this).attr("display_name");var len = $("select[name='scheduling_user_id'] option").length;var flag = true;$("select[name='scheduling_user_id'] option").each(function(){    if(id == $(this).val()){        flag = false;    }});if(flag){    var new_option = "<option value='"+id+"'>"+name+"</option>";    $(new_option).appendTo("#scheduling_user_id");    $("#new_item_"+id).remove();}//四、事件监听$("#select_id").change(function(){//code...});    //为Select添加事件,当选择其中一项时触发

热点排行