隐藏链接在地址栏出现,点击时,按住不放,mouseover时,

来源:互联网 发布:电杆定位仪器软件 编辑:程序博客网 时间:2024/06/04 18:14
<script src="jquery.js"></script>
<script>
//作用:
function setStatus()
    {
        window.status = "";
        return true;
    }
$(document).ready(function(){
    $("a").hover(setStatus,setStatus);  
    $("a").focus(setStatus);
});
</script>
<a href = "a.php">href</a>
<a href = "a.php">href</a>
<a href = "a.php">href</a>
<a href = "a.php">href</a>
<a href = "a.php">href</a>
<a href = "a.php">href</a>
<a href = "a.php">href</a>
<a href = "a.php" class="ae">href</a>