Authored by mali

描述长度限制

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