- 浏览: 5697 次
- 性别:
- 来自: 孝感
最新评论
文章列表
onblur="checkLen('feedBack');"
//字数限制
function checkLen(check){
if(!isEmpty(document.IntegrationForm.feedBack.value)&&check=="feedBack"){
var feedBack = document.IntegrationForm.feedBack.value;
document.IntegrationForm.feedBack.value = feedBack.substring(0,200);
...
<td colspan=2>
<center>
<input type="button" class="button2" value="上传" onclick="upload();" />
<input type="button" class="button2" value="关闭" onclick="javascript:window.close();"/& ...
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd">
<beans>
<!-- create by zhanhh on $2011-1107 普通投诉工单逾期短信提醒 -->
<!-- 注:所有的bean的id都要改成唯一的 -- ...
---获取系统当前时间
DateUtil.getDateTimeHelper()
---表示字符串为空
引入包import com.cthq.crm.util.StringUtils;
---StringUtils.isEmpty(XXX)
---字符串串联
StringBuffer String = new StringBuffer("");
串联方法:String.append("XXX");
StringBuffer类型转换为String类型:String.toString();
--字符串分割(java类和js中通用)
通过逗号分割 ...
xml 转义符
html 与 xml的转义符不同, xml就只有5个:
< <
> >
& &
" "
' '