// remove the space both sides of String
String.prototype.Trim = function()
{
return this.replace(/(^\s*)|(\s*$)/g, "");
}
// remove the space left ...
- 15:16
- 浏览 (130)
- 评论 (0)
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts-config PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 1.1//EN"
"http://jakarta.apache.org/struts/dtds/struts-config.dtd"><!-- struts-config.xml中的元素必须按照上述doc指令中的dtd文档定义顺序书写,本例即遵从了dtd定义顺序 --><!-- struts-config是整个xml的根 ...
- 19:00
- 浏览 (287)
- 评论 (0)







评论排行榜