1.验证字符串是否为空格.是否包含非法字符. //验证是否字符串有非法字符 function v_invalide_char(value,msg){ var arr = ['#','@','!','$','%','^','&','*']; var flag=true; var v_char=""; if(value!=null && !v_trim(value)){ for(var i=0;i<value.length && flag;i+…
1.mysql向表中某字段后面追加一段字符串:update table_name set field=CONCAT(field, '分隔符', str);//'分隔符',可以为空,也可以省略update table_name set field=CONCAT(field, str);update table_name set field=CONCAT(field, str) where articleid=3487 and title not like '%v' 2.mysql向表中某字段前面追…