帮你顶了,顺便接粉,这个按不会

解决方案 »

  1.   

    <map name="Map" id="Map">
    <area shape="rect" coords="9,1,36,113" onmouseover="addImg();">
    <area shape="rect" coords="36,1,61,113">
    <area shape="rect" coords="61,1,85,113">
    <area shape="rect" coords="85,1,111,113">
    </map>
    <script>
    function addImg(){
    newImg = document.createElement("<img width='270' height='300' name='mypic' id='mypic' src=''>");
                    document.getElementById("Map").appendChild(newImg);
    }
    </script>