取消 map area 鏈接 手指

<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" οnclick="aaa();" value = "aaaa"></input>
<input type="button" οnclick="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>

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章