js에서 jQuery의 함수를 호출하는 방법과 jQuery에서 js의 함수를 호출하는 방법

js 호출 jQuery 메서드:
function getResult(){
    //    
    $().getFuc();
};
//      
$(function(){
    //   getFuc jQuery  
    $.fn.getFuc=function(){
        alert("1111111111111");
    }
});

jQuery 호출 js 메서드:
$("#button3").click(function () {
        getFuc();
    });
function getFuc(){
       alert("111111");
}

좋은 웹페이지 즐겨찾기