Topic: 请问关于<html:form 中的问题

  Print this page

1.请问关于<html:form 中的问题 Copy to clipboard
Posted by:
Posted on: 2006-11-01 23:07

我刚接触到标签的使用,我很想问一下在标签里是否可以用javascript,该怎么用,举个例子。
<head>
<script type="" language="javascript">
function check()
{
var i=0;
for(i=0;i<15;i++){
if(f1.elements[i].value=="")
{
alert("所有信息均为必填,请继续填写");
f1.elements[i].focus();
break;
}
}
else
{
f1.submit();
}
}
</script>
</head>
<body>
<form action="next.jsp" method="post" name="f1">
<input type="text" name="t1">
<input type="text" name="t2">
<input type="button" onclick="check()">
</form>
</body>

===========如果我要用标签该怎么写呢?

2.Re:请问关于<html:form 中的问题 [Re: 批] Copy to clipboard
Posted by: yangjx
Posted on: 2006-11-06 09:55

<form action="next.jsp" method="post" name="f1">
<input type="text" name="t1">
<input type="text" name="t2">
<input type="button" onclick="check()">
</form>

<html:form action="next.jsp" method="post" name="f1">
<html:text property="t1"/>
<html:text property="t2"/>
<html:button property="btn" onclick="check()"/>
</html:form>


   Powered by Jute Powerful Forum® Version Jute 1.5.6 Ent
Copyright © 2002-2021 Cjsdn Team. All Righits Reserved. 闽ICP备05005120号-1
客服电话 18559299278    客服信箱 714923@qq.com    客服QQ 714923