如何阻止a链接的默认行为并获得href属性

本文介绍了一种使用JavaScript实现图片预览的方法。当点击包含图片链接的元素时,页面上的指定图片将被替换为所选图片,并更新描述文本。此功能通过阻止默认事件并直接修改图片源来实现。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

直接在绑定事件后添加return false 或 

this.blur();window.event.returnValue = false;
html
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
    <script src="meishu.js" type="text/javascript"></script>
</head>
<body>
    <ul id="list">
        <li>
            <a href="img/04.png" title="hahhah">第一张</a>
        </li>
    </ul>

    <img id="placeholder" src="img/06.png" alt="">
    <p id="description">内容</p>
</body>
</html>

 

js
window.onload=function(){
    function show(whichpic){
        var source=whichpic.getAttribute("href");
        var placeholder=document.getElementById("placeholder");
        placeholder.setAttribute("src",source);
        var text=whichpic.getAttribute("title");
        var description=document.getElementById("description");
        description.firstChild.nodeValue=text;
       
}

    var list=document.getElementById("list");
    var links=list.getElementsByTagName("a");
    for(var i=0;i<links.length;i++){
        links[i].onclick=function(){
            show(this);
            return false;
        // this.blur(); 
        // window.event.returnValue = false;
        }
    }
};

 

 

 

转载于:https://www.cnblogs.com/feilu2016/p/7159903.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值