gpt4 book ai didi

html - html 标签中的光标指针

转载 作者:可可西里 更新时间:2023-11-01 13:16:13 25 4
gpt4 key购买 nike

我有一个这样的jsp

<%@ include file="commonheader.jsp"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<script type="text/javascript">
function passValue(stateid,cityid)
{
if(cityid=="0")
{
document.forms["test"].action="locator/city.jsp"
document.forms["test"]["stateid"].value=stateid;
document.forms["test"].submit();
}
else
{
document.forms["test"].action="locator/area.jsp"
document.forms["test"]["stateid"].value=stateid;
document.forms["test"]["cityid"].value=cityid;
document.forms["test"].submit();
}
}
</script>
</head>

<body leftmargin="0" topmargin="0" rightmargin="0" bottommargin="0" marginwidth="0" marginheight="0">
<div align="center">
<table width="70%" border="0">
<tr>
<td width="80%" align="center"><img src="images/map.jpg" width="550" height="500" border="0" usemap="#Map">
<form id="test" name="test" method="post">
<input type="hidden" name="stateid" />
<input type="hidden" name="cityid"/>
<map name="Map">
<area shape="rect" coords="81,291,180,305" alt="Maharashtra" onclick="passValue('15','0') />
</map>
</form>
</td>
</tr>
</table>
</div>
</body>
</html>

表单正在提交并且值正在正确传递。但这里的问题是光标不是指针而是默认值。我什至尝试在 style="cursor:pointer;"这样的标签中指定样式属性但这没有用。

最佳答案

href="javascript:void(null);" 添加到 area 标签就可以了。

关于html - html <area> 标签中的光标指针,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8677213/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com