jquery radio 取值 取消选中 赋值

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<script type="text/javascript" src="jquery-1.11.1.min.js">

</script>
<script>
    $(function() {
        $("#studentBtn").click(function() {
            //var student = $("#student").val();//不管选没选中,只取第一个
            //var student = $("#student:checked").val();//取选中项
            //$("#student:checked").attr("checked",false);//取消选中项
            //$("#student:eq(3)").attr("checked",true);//指定选中项(无效)
            //$("#student[value=2]").attr("checked",true);//指定选中项(IE8有效,谷歌不可用,qq(IE10内核)不可用,火狐无效)
            //$("#student[type=radio]:eq(2)").attr("checked",true);//指定选中项选中
            //$("#student[value=2]").attr("checked",true);//指定值的项选中(无效)
            //$("input[id=student][value=2]").attr("checked",true);//指定值的项选中
            //var studentNo = $("#studentNo").val();
            //$("#student:checked").attr("checked",false);
            //指定值的项选中(1、IE下可用(IE8内核) 2、谷歌下可用 3、QQ(IE10内核)下只有第一次执行成功,第二次无效 4、火狐下无论多少次无效)
            //$("input[type=radio][name=student][value=‘"+$("#studentNo").val()+"‘]").attr("checked",true);
            //alert(student);
        });
    })
</script>
</head>

<body>
    <input name="student" id="student" type="radio" value="0" />张飒
    <input name="student" id="student" type="radio" checked="checked" value="1" />李斯
    <input name="student" id="student" type="radio" value="2" />王武
    <input name="student" id="student" type="radio" value="3" />赵丽 输入学号:
    <input type="text" name="studentNo" id="studentNo" value="0" />
    <input type="button" name="studentBtn" id="studentBtn" onclick="chooseStudent()" value="确定" />
</body>
</html>
时间: 2024-09-30 04:23:23

jquery radio 取值 取消选中 赋值的相关文章

jquery radio取值,checkbox取值,select取值,radio选中,checkbox选中,select选中,及其相关

jquery radio取值,checkbox取值,select取值,radio选中,checkbox选中,select选中,及其相关 获取一组radio被选中项的值var item = $('input[@name=items][@checked]').val();获取select被选中项的文本var item = $("select[@name=items] option[@selected]").text();select下拉框的第二个元素为当前选中值$('#select_id'

jQuery radio取值,checkbox取值,select取值

语法解释: 1 $("#select_id").change(function(){//code...});   //为Select添加事件,当选择其中一项时触发 2 var checkText=$("#select_id").find("option:selected").text();  //获取Select选择的Text 3 var checkValue=$("#select_id").val();  //获取Selec

2016 系统设计第一期 (档案一)jQuery radio 取值赋值

MVC代码: <div class="form-group"> <label for="Gender" class="col-sm-2 control-label">性别</label> <div class="col-md-8"> <label class="checkbox-inline"> @Html.RadioButton("Ge

easyui 》 radio取值,checkbox取值,select取值,radio选中,checkbox选中,select选中

获取一组radio被选中项的值var item = $('input[@name=items][@checked]').val();获取select被选中项的文本var item = $("select[@name=items] option[@selected]").text();select下拉框的第二个元素为当前选中值$('#select_id')[0].selectedIndex = 1;radio单选组的第二个元素为当前选中值$('input[@name=items]').g

Jquery Ajax取值和绑定写入数据库

1.解决IE兼容性显示问题 <meta http-equiv="X-UA-Compatible" content="IE=edge,11" /> 2.绑定Jquery,取 ”工号“ 对应的控件ID   #DetailsView1_txtStaffNo,执行input写入方法,当工号输入到6位长度执行Ajax方法调用数据取回 ”姓名“, 返回的值绑定回 #DetailsView1_txtStaffName 和 #txt_staffname_hidden两个

jquery操作select详解(取值,设置选中)

每一次操作select的时候,总是要出来翻一下资料,不如自己总结一下,以后就翻这里了. 比如<select class="selector"></select> 1.设置value为pxx的项选中 $(".selector").val("pxx"); 2.设置text为pxx的项选中 $(".selector").find("option[text='pxx']").attr(&qu

解决ueditor jquery javascript 取值问题

代码如下: var content = UE.getEditor('myEditor').getContent(); myEditor是ueditor 的名称name. 代码如下: <textarea name="myEditor" id="myEditor"></textarea><script type="text/javascript">var editor = new UE.ui.Editor();ed

Jquery常用操作:checkbox、select取值,radio、checkbox、select选中及其相关

常用Jquery操作:checkbox取值.select取值.radio选中.checkbox选中.select选中及其相关: 1.影藏页面元素 使用jquery真的很方便,比如要控制div的显示与隐藏,一句话就搞定了,请看下面使用说明. $("#id").show()表示display:block, $("#id").hide()表示display:none; $("#id").toggle()切换元素的可见状态.如果元素是可见的,切换为隐藏的

jquery操作select下拉框的多种方法(选中,取值,赋值等)

jQuery获取Select选择的Text和Value:语法解释:1. $("#select_id").change(function(){//code...});   //为Select添加事件,当选择其中一项时触发2. var checkText=$("#select_id").find("option:selected").text();  //获取Select选择的Text3. var checkValue=$("#select