马上注册,一起探讨正确快速的建站方法
您需要 登录 才可以下载或查看,没有帐号?快速注册
x
很多同学在discuz x门户编辑器发布文章的时候都会遇到图片没法设置ALT描述,这样导致文章的内容优化非常不友好,所以下面分享下Discuz x3.2门户文章图片添加Alt的方法
文件:
static/image/editor/editor_function.js
template/default/home/spacecp_blog.htm
另存: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);
- }
复制代码
修改为
再编辑:template/default/home/spacecp_blog.htm
查找:
editor_function.js
替换为
bgeditor_function.js
覆盖同名文件,更新缓存,发布文章测试看看 |