jquery 監聽radio選中,取值


$(document).ready(function(){
    $("input[name=discount]").each(function(){
        $(this).click(function(){
            var discount = $(this).val();
            if(discount=="0"){
                $(".discount").css("display","none");
            }
            if(discount=="1"){
                $(".discount").css("display","inline");
            }
        });
    });
});

監聽點擊事件,根據不同值做不同回應

 

var discount=$("input[name=discount]:checked").val();

 獲取當前選中的radio的值


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM