Authored by mali

描述长度限制

... ... @@ -249,5 +249,9 @@
//填写过滤规则
//,filterRules: {}
, wordCount : true // {Boolean} [默认值:true] //是否开启字数统计
, maximumWords : 100 // {Number} [默认值:10000] //允许的最大字符数
, wordCountMsg : "当前已输入{#count}个字符, 您还可以输入{#leave}个字符。 " // {String} [默认值:] //当前已输入 {#count} 个字符,您还可以输入{#leave} 个字符,字数统计提示,{#count}代表当前字数,{#leave}代表还可以输入多少字符数,留空支持多语言自动切换,否则按此配置显示
, wordOverFlowMsg : "<span style='color:red;'>你输入的字符个数已经超出最大允许值,服务器可能会拒绝保存!</span>" // {String} [默认值:] //超出字数限制提示 留空支持多语言自动切换,否则按此配置显示
};
})();
\ No newline at end of file
... ...
... ... @@ -137,6 +137,9 @@ $(document).on("click", "#saveAllInfo", function() {
} else if ($.trim($("#phrase").val()) != "" && $.trim($("#phrase").val()).length < 60) {
window.IS_OVER = true;
common.util.__tip("推荐短语不能少于60个字符", 'warning');
} else if (UMdescriptioner.getContent().length > 60000) {
window.IS_OVER = true;
common.util.__tip("描述长度超出6万字符", 'warning');
}else{
$("#saveBasicInfo").click();
$("#fenMainSave").click();
... ...
... ... @@ -48,6 +48,11 @@ $(document).on("click", "#btn-descriptioner", function () {
var reg2=new RegExp("\\?imageView2/0/q/75","g");
content = content.replace(reg2,'');
if(content && content.length > 60000){
common.util.__tip('描述长度超出6万字符', 'warning');
return false;
}
var params = {
content: content
}
... ...