<html>
<head>
<script src="https://libs.baidu.com/jquery/1.10.2/jquery.min.js">
</script>
<script>
$(document).ready(function(){
$("a").click(function(event){
event.preventDefault();
});
});
</script>
</head>
<body>
<a href="https://shouce.ren/">Go to shouce.ren</a>
<p>The preventDefault() method will prevent the link above from following the URL.</p>
</body>
</html>