js에서 jQuery의 함수를 호출하는 방법과 jQuery에서 js의 함수를 호출하는 방법
395 단어 HTML 프런트엔드
function getResult(){
//
$().getFuc();
};
//
$(function(){
// getFuc jQuery
$.fn.getFuc=function(){
alert("1111111111111");
}
});
jQuery 호출 js 메서드:
$("#button3").click(function () {
getFuc();
});
function getFuc(){
alert("111111");
}