div - jQuery의 내용 변경 링크 중 하나를 클릭했을 때 이 div의 내용을 어떻게 변경할 수 있습니까? Main Balance PayPal AlertPay 링크에 대한 .click 이벤트를 구독하고 다음 방법으로 div의 내용을 변경할 수 있습니다. $('.click').click(function() { // get the contents of the link that was clicked var linkText = $(this).text(); // replace the contents of the div with the link text $('#content-container').html(linkText); // cancel the default action of the link by retu..