Spring MVC与表单日期提交的问题 spring mvc 本身并不提供日期类型的解析器,需要手工绑定, 否则会出现非法参数异常. org.springframework.beans.BeanInstantiationException: Could not instantiate bean class [java.util.Date]: Constructor threw exception; nested exception is java.lang.IllegalArgumentExc…
一个按钮提交两个表单,有时候会用到,一般会很容易想到使用 onclick="document.form1.submit();document.form2.submit();" 的方法往往只会提交最后一个表单,前面一个会莫名其妙的忽略不计,有人提议使用下面的方法: 1)<script language="vbscript"> sub form1_onsubmit() form2.submit end sub</script>//1的方法不能用在…