jQuery获取Radio选择的Value值的几种方法
Time:2021/06/04 11:20:41 Click:
alert($("input[name='zhiyexinxi'][checked]").val()); 1. $("input[name='radio_name'][checked]").val(); //选择被选中Radio的Value值 2. $("#text_id").focus(function(){//code...}); //事件 当对象text_id获取焦点时触发 3. $("#text_id").blur(function(){//code...}); //事件 当对象text_id失去焦点时触发 4. $("#text_id").select(); //使文本框的Vlaue值成选中状态 5. $("input[name='radio_name'][value='要中Radio的Value值']").attr("checked",true); jQuery获取CheckBox选择的Value
这就是几种方法,收集整理。
上一篇:WDCP如果重置Mysql密码