이 기사의 예에서는 JavaScript에서 하이퍼링크 점프를 비활성화하는 방법을 설명합니다. 참고하실 수 있도록 모든 사람과 공유하세요. 자세한 내용은 다음과 같습니다.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>JS阻止链接跳转</title> </head> <body> <div align="center"> <table width="300" height="100" border="0" cellpadding="0" cellspacing="0" bgcolor="#66CCFF"> <tr> <td align="center"><a href="http://www.jb51.net" id="testLink">点击此链接</a> <script type="text/javascript">var test = document.getElementById('testLink'); test.onclick = function(e) { alert('链接地址是:' + this.href + ', 不过不会直接跳转'); stopDefault(e); } </script></td> </tr> </table> </div> </body> </html>
더 많은 JavaScript 관련 콘텐츠에 관심이 있는 독자는 이 사이트의 특별 주제를 확인할 수 있습니다. "JavaScript 애니메이션 특수 효과 및 기술 요약", "Javascript 객체 지향 입문 튜토리얼 " 및 "JavaScript 데이터 구조 및 알고리즘 기술 요약》
이 기사가 JavaScript 프로그래밍에 종사하는 모든 사람에게 도움이 되기를 바랍니다.