阻止a标签跳转的默认行为


<html>
<head>
    <title>title>
head>
<body>
    <a href="http://www.baidu.com/" id="aaa">跳转到百度a>

    <script type="text/javascript">
        document.getElementById('aaa').onclick = function(ev){
            ev.preventDefault();
        }
    script>
body>
html>

你可能感兴趣的:(HTML5)