[jQuery]radio button, click事件

  • 10478
  • 0

摘要:[jQuery]radio button, onchange事件

        $(document).ready(function () {
            
            //rblWorkType作業內容 onchange
            var rblWorkType = $("input[name*=rblWorkType]:radio");
            rblWorkType.change(function () {
                alert(111);
            });
        });