下面是我写的一段代码
******************************
<script>
function showing(id1) {
document.all.myimg.src="show.asp?id="+id1
newX = window.event.x + document.body.scrollLeft
newY = window.event.y + document.body.scrollTop
menu = document.all.itemopen
if ( menu.style.display == ""){
menu.style.display = "none" }
else {
menu.style.display = ""}
menu.style.pixelLeft = newX+20
menu.style.pixelTop = newY
}
</script>
<table width="100%" border="1" cellspacing="1" cellpadding="1">
<%sql="select mkid,signtime from kqxxb"
rs.open sql,conn,1,1
while not rs.eof
id=rs("signtime") 在这里如果我改称rs("mkid")时函数运行正常,参数卫间出现问题
%>
<tr>
<td align="center" onclick="showing(<%=id%>)"><%=rs("mkid")%><a href="show.asp?id=<%=id%>">12</a> </td>
</tr>
<%rs.movenext
wend
rs.close%>
</table>
<table width="100" height="100" border="0" cellpadding="0" cellspacing="0" class='box' id="itemopen" style='display:none'>
<tr><td><img src="showing.asp" id="myimg" width="200" height="200"></td></tr>
</table>
************************************
当我点击鼠标时,函数好像没有执行,这是为什么?
[此贴子已经被作者于2006-1-11 10:43:50编辑过]