discuz x3.1门户文章插入图片没有alt标签
发布:smiling 来源: PHP粉丝网 添加日期:2014-12-02 14:30:55 浏览: 评论:0
很多使用dz x3的朋友发现使用它们的门户模块人发布文章时文章里面图片全部没有alt标题提示了,下面我就来给各位介绍此问题解决办法.
在解决此问题之前请先备份网站数据,切记,这次修改需要修改两个文件,增加一个文件,分别是:
1.static/image/editor/editor_function.js
2.template/default/home/spacecp_blog.htm
增加的文件为:
static/image/editor/editor_function.js–复制一份,重命名为:bgeditor_function.js
编辑:editor_function.js,代码如下:查找:
- function insertImage(image, url, width, heigh) {
- url = typeof url == ‘undefined’ || url === null ? image : url;
- width = typeof width == ‘undefined’ || width === null ? 0 : parseInt(width);
- height = typeof height == ‘undefined’ || height === null ? 0 : parseInt(height);
- var html = ‘<p><a href=”‘ + url + ‘” target=”_blank”><img src=”‘+image+’”‘+(width?’ width=”‘+width+’”‘:”)+(height?’ height=”‘+height+’”‘:”)+’></a></p>’;
- edit_insert(html);
- }
- //替换为:
- function insertImage(image, url, width, height,subject) {
- url = typeof url == ‘undefined’ || url === null ? image : url;
- width = typeof width == ‘undefined’ || width === null ? 0 : parseInt(width);
- height = typeof height == ‘undefined’ || height === null ? 0 : parseInt(height); //开源软件:phpfensi.com
- subject = $(‘title’).value;
- var html = ‘<p><a href=”‘ + url + ‘” target=”_blank”><img alt=”‘+subject+’” src=”‘+image+’”‘+(width?’ width=”‘+width+’”‘:”)+(height?’ height=”‘+height+’”‘:”)+’></a></p>’;
- edit_insert(html);
- }
再编辑bgeditor_function.js,查找:
- function insertImage(image, url, width, heigh) {
- url = typeof url == ‘undefined’ || url === null ? image : url;
- width = typeof width == ‘undefined’ || width === null ? 0 : parseInt(width);
- height = typeof height == ‘undefined’ || height === null ? 0 : parseInt(height);
- var html = ‘<p><a href=”‘ + url + ‘” target=”_blank”><img src=”‘+image+’”‘+(width?’ width=”‘+width+’”‘:”)+(height?’ height=”‘+height+’”‘:”)+’></a></p>’;
- edit_insert(html);
- }
- //替换为:
- <blockquote><blockquote>function insertImage(image, url, width, height,subject) {
再编辑:template/default/home/spacecp_blog.htm 查找:
editor_function.js
替换为:
bgeditor_function.js
编辑完毕保存,把文件上传到原来位置,增加的bgeditor_function.js与editor_function.js一块放在同一目录.
后台发布一片文章,输入文章标题,上传图片,进入源代码模式,看看图片是不是有了alt标签?
Tags: discuzx3 1 discuzx图片alt标签
相关文章
- ·设置Apache2.4.4支持DiscuzX3.1伪静态(2014-04-01)
- ·Discuz3.1论坛升级问题集(2013-11-15)
- ·升级Discuz3.1时update.php访问出错(2013-11-15)
- ·Discuz3.1论坛升级问题集(2014-03-31)
- ·升级Discuz3.1时update.php访问出错(2014-04-01)
- ·Discuz!X2.5和UCenter_1.6.0(2014-04-01)
- ·DZX2R20120628升級到Discuz! X2 R20130201~diy数据出错(2014-04-03)
- ·DISCUZ X3实现LINUX 虚拟主机环境下的301+伪静态教程(2014-07-22)
- ·Discuz X3.1使用心得——上传头像错误(2014-07-22)
- ·社区动力discux X3.1我的安装方法(2014-07-22)
- ·解决discuz UCenter后台访问出现mysql 1045错误问题(2014-12-05)
- ·DZ论坛COOKIE前缀 2132(2015-09-30)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)