回 帖 发 新 帖 刷新版面

主题:表单重置的问题

点击重置 为什么变成提交表单了?
<html:reset value="reset"/>

留言板,添加一次留言后,再次添加留言已经是上次留言内容,解决这个问题,用了下面的方法,结果收效了,不知道这对我上面的问题有没有影响?
form 覆盖了reset方法了 把表单参数都重置为null
action 里最后调用了reset方法

回复列表 (共1个回复)

沙发


<form id="form1" name="form1" method="post" action="">
  Name
  <label>
  <input type="text" name="textfield" id="textfield" />
  </label>
  <br>Pwd
    <label>
    <input type="text" name="textfield2" id="textfield2" />
    </label>
  </p>
  <br>
    <label>
    <input type="reset" name="button" id="button" value="重置" />
    </label>
    <label>
    <input type="submit" name="button2" id="button2" value="提交" />
    </label>
  </br>
</form>


仔细看 重置和提交 的 type 属性

我来回复

您尚未登录,请登录后再回复。点此登录或注册