取消 map area 链接 手指

来源:互联网 发布:mac如何退出vim模式 编辑:程序博客网 时间:2024/04/29 09:12

<html>
<body>
<img id= "a1" src = "perfor.png" usemap = "#check"></img>
<map name = "check">
    <area shape="rect" coords= "0,0,100,100" href="JavaScript:void(0);" onclick = "ccc();"/>
</map>
<input type="button" onclick="aaa();" value = "aaaa"></input>
<input type="button" onclick="bbb();" value = "bbbb"></input>
<script>
    function aaa(){
        document.getElementById("a1").style.cursor="default";
    }
    function bbb(){
        document.getElementById("a1").style.cursor="auto";
    }
    function ccc(){
        alert("aaa");
    }
</script>

</body>
</html>

原创粉丝点击