用 JQ 替換編輯器里的圖片樣式 和 替換編輯器里的圖片alt為文章標(biāo)題,這只是V1.0 ,進(jìn)一步優(yōu)化用戶體驗(yàn)的話,可以在img標(biāo)簽外嵌套一層,實(shí)現(xiàn) 默認(rèn)顯示縮略圖,點(diǎn)擊縮略圖 燈箱顯示原圖
const pagesTitle = '[ 此處為JS替換標(biāo)題 ]';
// 重構(gòu)img標(biāo)簽
$('article img').replaceWith(function () {
const imgSrc = $(this).attr('src');
return (
'<img data-src="' + imgSrc + '" data-width data-height alt="' + pagesTitle + '" uk-tooltip="title: ' + pagesTitle + '; pos: bottom" uk-img>'
);
});demo+代碼地址:
https://jsbin.com/silukev/edit?html,js,output
收藏了