在书上看到一段post form的例子 form中指定了method和action对应的page form中包含了几个textbox 以及submit button , reset button 我就是不太明白submit按下去怎么完成提交当前form数据的这个消息的响应的 是规定吗? 因为我从form和submit的属性中都看不出来如果按下submit就会怎么怎么样 还有reset也是这样
如果就用默认的submit和post方式以及指定一个action的form submit提交的数据对象是离它最近的form还是? 如果一个页面有多个type=submit的button呢?
原来一直没接触过web application,如果问得不对大家别笑话我 :)
---------------------------------------------------------------
每一个form都有一个name,可以根据这个来区分!!
---------------------------------------------------------------
when you click on SUBMIT button, the browser takes over, encode your data and send them to the URL identified by the form's action property
when you click on RESET button, the browser takes over, reset those controls in the form to their initial values