layui 라디오 체크 상자 자동 선택 (checked)

945 단어 layui
HTML 폼:

JS 는 ajax 로 백 엔 드 로 데 이 터 를 되 찾 습 니 다:
$.get(    
        "{:url('user/xxxx')}",
        {'id':adminId},
        function(d){
              //      
              if(d.is_notice == 0){
                    $("input[name=is_notice][value=1]").prop("checked","false");
                    $("input[name=is_notice][value=0]").prop("checked","true");
               }
               form.render(); //    
         }
);

마지막 form. render () 를 기억 하 십시오.빠 뜨 려 서 는 안 된다
(layui 사용 전 도입 작업 생략)
mark it.

좋은 웹페이지 즐겨찾기