亲注册登录道勤网-可以查看更多帖子内容哦!(包涵精彩图片、文字详情等)请您及时注册登录-www.daoqin.net
您需要 登录 才可以下载或查看,没有账号?立即注册
x
最近道勤小编接了一个小单子;用discuz搭建了个网站——人才招聘网(www.jobbing360.com),用到了门户功能,不得不说Discuz的功能还是非常强大的,但在使用过程中发现在发表文章时添加了图片却不能像wordpress这样自动添加alt标签,经过一番研究,初步解决了这个问题,目前还没有Bug,等待长时间验证,方法如下: 在实施本方法之前请先备份网站数据,以防不测;这次修改需要修改两个文件,分别是: - static/image/editor/editor_function.js
- template/default/home/spacecp_blog.htm
复制代码同时增加一个文件为: static/image/editor/editor_function.js–复制一份,重命名为:bgeditor_function.js 下面开始修改:editor_function.js 查找代码: - function insertImage(image, url, width, height) {
- 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);
- 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, height) {
- 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);
- var html = '<p><a href="' + url + '" target="_blank"><img alt="'+subject+'" src="'+image+'"'+(width?' width="'+width+'"':'')+(height?' height="'+height+'"':'')+'></a></p>';
- edit_insert(html);
- }
复制代码再编辑:template/default/home/spacecp_blog.htm 查找:editor_function.js 替换为:bgeditor_function.js 编辑完毕保存,把文件上传到原来位置,增加的bgeditor_function.js与editor_function.js一块放在同一目录。后台发布一片文章,输入文章标题,上传图片,进入源代码模式,看看图片是不是有了alt标签?!
道勤主机提供365天*24小时全年全天无休、实时在线、零等待的售后技术支持。竭力为您免费处理您在使用道勤主机过程中所遇到的一切问题!
如果您是道勤主机用户,那么您可以通过QQ【792472177】、售后QQ【59133755】、旺旺【诠释意念】、微信:q792472177免费电话、后台提交工单这些方式联系道勤主机客服!
如果您不是我们的客户也没问题,点击页面最右边的企业QQ在线咨询图标联系我们并购买后,我们为您免费进行无缝搬家服务,让您享受网站零访问延迟的迁移到道勤主机的服务! |