onload="javascript:document.forms[0].submit()"
<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<html:form action="/control/product/type/manage" method="post" onsubmit="return checkfm(this)">
<html:hidden property="parentid"/>
<input type="hidden" name="method" value="add">
<br>
<table width="90%" border="0" cellspacing="2" cellpadding="3" align="center">
<tr bgcolor="6f8ac4"><td colspan="2" > <font color="#FFFFFF">添加类别:</font></td>
</tr>
<tr bgcolor="f5f5f5">
<td width="22%" > <div align="right">类别名称:</div></td>
<td width="78%"> <html:text property="name" size="50" maxlength="50"/>
<font color="#FF0000">*</font></td>
</tr>
<tr bgcolor="f5f5f5">
<td width="22%" > <div align="right">备注(100字以内):</div></td>
<td width="78%"> <html:text property="note" size="80" maxlength="100"/>
</td>
</tr>
<tr bgcolor="f5f5f5">
<td colspan="2"> <div align="center">
<input type="submit" name="SYS_SET" value=" 确 定 " class="frm_btn">
</div></td>
</tr>
</table>
</html:form>
<br>
</body>[/size]
本来流程是这样的点击添加类别后调到具体添加类别的输入数据的页面,输完后点击确定后,显示添加成功点击确定,再调到所有的类别页面。可现在我
在<body>onload="javascript:document.forms[0].submit()"标签内这行代码本来是想我添加类别后直接到类别的页面中去,中间就省略了点击确定的按钮步骤。这个的话,跳过输入的那个添加的步骤,直接到总的类别显示页面而添加的页面没有输入显示为空?请大侠帮我看看有什么办法解决。
JavaScript
jsp
submit
行业数据
------解决方案--------------------
onload="if(checkfm(document.forms[0])){ document.forms[0].submit();}"