JQuery 이벤트의 e 매개변수에 있는 PreventDefault() 메소드는 객체의 기본 동작을 취소할 수 있습니다. 다음 코드: 코드 복사 코드는 다음과 같습니다. ;/script> <br><script type="text/javascript"> <br>$(function () { <br>$("a").click(function (e) { <br>alert( $(this) .text()); <br>e.preventDefault();//이 문장이 없으면 바이두 웹사이트로 이동합니다 <br>}); 🎜>< ;/script> <br></head> <br><body><br><a href="http://www.baidu.com">baidu</a> >< /body> <br></html></div>