您的位置:首页 > 其它

discuz 论坛门户发布文章带alt属性标签的方法,转载自老申随笔记网,希望对各位有所帮助.SEO优化之图片alt标签的声明.

2018-02-22 22:51 357 查看
很多人问为什么discuz论坛的门户发布文章时候图片没有alt标签.最后网上看了很多方法,经过测试都是无效的最后又查找了下.找到了一篇文章.经过测试.确属可用.于是果断转载了.
最后声明下.此方法转载自老申随笔记网. 保留别人的版权,尊重别人的劳动成果...

static/image/editor/editor_function.jstemplate/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);}复制代码修改为:
按 Ctrl+C 复制代码
function insertImage(image, url, width, height, subject) {    url = typeof url == 'undefined' || url === null ? image : url;

如需查看全文请点击此处:https://www.2017002.cn/2017002.cn/SEOJC/201802/dzbq0.html 收集与互联网.
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
相关文章推荐