jQuery獲取Radio選擇的Value值的幾種(zhǒng)方法
Time:2021/06/04 11:20:41 Click:
alert($("input[name='zhiyexinxi'][checked]").val()); 1. $("input[name='radio_name'][checked]").val(); //選擇被(bèi)選中Radio的Value值 2. $("#text_id").focus(function(){//code...}); //事(shì)件 當對(duì)象text_id獲取焦點時(shí)觸發(fā) 3. $("#text_id").blur(function(){//code...}); //事(shì)件 當對(duì)象text_id失去焦點時(shí)觸發(fā) 4. $("#text_id").select(); //使文本框的Vlaue值成(chéng)選中狀态 5. $("input[name='radio_name'][value='要中Radio的Value值']").attr("checked",true); jQuery獲取CheckBox選擇的Value
這(zhè)就(jiù)是幾種(zhǒng)方法,收集整理。