文章列表
Action类
Struts 1要求Action类要扩展自一个抽象基类。Struts 1的一个共有的问题是面向抽象类编程而不是面向接口编程。
Struts 2的Action类实现了一个Action接口,连同其他接口一起实现可选择和自定义的服务。Struts 2提供一个名叫ActionS ...
pre {white-space: pre-wrap; /* css-3 */white-space: -moz-pre-wrap; /* Mozilla, since 1999 */white-space: -pre-wrap; /* Opera 4-6 */white-space: -o-pre-wrap; /* Opera 7 */word-wrap: break-word; /* Internet Explorer 5.5+ */}
function isLeapYear(iYear){ //判断闰、平年
return ((iYear % 4 == 0) && ((iYear % 100 != 0) || (iYear % 400 == 0)));
}
_daysInMonth = [31,28,31,30,31,30,31,31,30,31,30,31]; //每月天数
function fakeAddMonth(iYear,iMonth,iDate,iIncrement) {
if(iMonth + iIncrement > 11) { //判断是否超过一年
++iYear;
iM ...