왕논의 연구실

WKWebView 버튼 반응 오류 본문

카테고리 없음

WKWebView 버튼 반응 오류

ywangnon 2020. 8. 4. 10:47

//수정전

$("#loginBoxContentsLoginBtn").click(  

  function(){

    $(this).text('clicked');

    formChecker();            

  }

);

 

수정 후 

$(document).on("click", "#loginBoxContentsLoginBtn", function() {

          formChecker();      

        });

 

https://hiizz.tistory.com/3