xddy 2002-05-12 04:45:42 mapshow.asp 如下
<HTML>
<HEAD>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</HEAD>
<%
for i=0 to 10000
i=2*i
next
%>
<body topmargin="0" leftmargin="0" onload="javascript:showHeadOption()" >
<img border=0 class="SearchPoint" height="480" id="eventsourse" src="maplayer.jpg" useMap="#SystemMap" width="620" onclick="javascrip:mapClick()">
<MAP NAME="SystemMap">
<area shape="CIRCLE" href="javascript:" coords="380 , 201 , 104" onclick="javascript:mousePoint(this);" >
</MAP>
<FORM name="mapx" method=get action="mapshow.asp" >
<!--当前操作--> <INPUT type="text" name="tool">
</FORM>
<SCRIPT language=javascript >
function mapClick()
{
alert("map event")
alert(document.mapx.action)
document.mapx.submit();
}
function mousePoint(obj)
{
alert("area event")
}
</SCRIPT>
</BODY>
</HTML>
当我点击图片任何位置都会递交本页可是我点击此AREA位置时不会递交
这是为什么?有什么办法?