jsp中table上的鼠标响应事件问题
在form中有个table,在table上有个鼠标单击事件,在鼠标单击事件处理函数中提交form给servlet处理,但是为什么提交不了,没有异常,但就是不执行后台的servlet。
来一位大侠,求助信号满格
<form name="fUserMan" action="MyServlet" method="post">
<div style="left:0px;overflow:scroll;height:90%;width:170;position:absolute;">
<table width="150" height="300" align="left" onclick="showMessage()">
</table>
</div>
</form>
function showMessage()
{
fUserMan.submit();
alert("procedure at here"); //这一句都执行的
}