chatMsg = filterChatMsg(chatMsg);
var msgObj ={
msg:chatMsg,
userId:'ac_'+AgentObj.agentId
}
var centertab = Ext.getCmp("center_id");
if(currentWin.indexOf("c_")!==0){
alert("非会话窗口!");
return false;
}
if(chatMsg==""||chatMsg==null){
alert("请输入内容!");
return false;
}
if(chatMsg.length>500){
alert(chatMsg.length);//这里是弹出的!!!!!!
alert("请输入小于500字符!");
return false;
}
空格s 占位了吧