当前位置: 首页 > 站长资讯 > 正文页面

discuz教程:家园记录字数限制修改方法 将记录字数改为140

适用于DZx2.0最新版 解决了空间主页状态那里字数限制的问题。Acw网站目录_网站网址收录与提交入口

DZ默认的记录字数最大为200个字符,也就是100个汉字。一般都是140个字的,这也太不够用了。至少要跟国际接轨啊!问了一圈没人解答,于是自己研究了下,参考了一下UCH的修改教程,现将修改方法分享给大家。Acw网站目录_网站网址收录与提交入口

1.source/include/spacecp/spacecp_doing.php找到代码Acw网站目录_网站网址收录与提交入口

$message = getstr($_POST['message'], 200, 1, 1, 1);Acw网站目录_网站网址收录与提交入口

把200修改为280 注意有两处需要修改。Acw网站目录_网站网址收录与提交入口

2.source/language/home/lang_template.php 找到Acw网站目录_网站网址收录与提交入口

'doing_maxlimit_char' => '还可输入 <strong id="maxlimit">200</strong> 个字符',Acw网站目录_网站网址收录与提交入口

把200改为280!Acw网站目录_网站网址收录与提交入口

3. template/default/home/space_doing_form.htm 找到代码Acw网站目录_网站网址收录与提交入口

<textarea name="message" id="message" class="xg1" onfocus="handlePrompt(1);" onclick="showFace(this.id, 'message', msgstr);" onblur="handlePrompt(0);" onkeyup="strLenCalc(this, 'maxlimit')" onkeydown="ctrlEnter(event, 'add');" rows="4">{lang doing_you_can}</textarea>Acw网站目录_网站网址收录与提交入口

改为Acw网站目录_网站网址收录与提交入口

<textarea name="message" id="message" class="xg1" onfocus="handlePrompt(1);" onclick="showFace(this.id, 'message', msgstr);" onblur="handlePrompt(0);" onkeyup="strLenCalc(this, 'maxlimit',280)" onkeydown="ctrlEnter(event, 'add');" rows="4">{lang doing_you_can}</textarea>Acw网站目录_网站网址收录与提交入口

4.template/default/home/space_status.htm 找到Acw网站目录_网站网址收录与提交入口

strLenCalc($('mood_message'), 'maxlimit');Acw网站目录_网站网址收录与提交入口

改成Acw网站目录_网站网址收录与提交入口

strLenCalc($('mood_message'), 'maxlimit',280);Acw网站目录_网站网址收录与提交入口

找到Acw网站目录_网站网址收录与提交入口

onkeyup="strLenCalc(this, 'maxlimit');">Acw网站目录_网站网址收录与提交入口

改为:Acw网站目录_网站网址收录与提交入口

onkeyup="strLenCalc(this, 'maxlimit',280);">Acw网站目录_网站网址收录与提交入口

最后进后台更新一下缓存!Acw网站目录_网站网址收录与提交入口

  

此文由 网站目录_网站网址收录与提交入口 编辑,未经允许不得转载!:

相关文章