功能:將大圖顯示在文字下方
使用場景:信息流或者“我的點贊”沛善,點開一張圖片
f12打開控制臺儒将,復(fù)制→回車
①先導(dǎo)入jquery
var importJs=document.createElement('script')//在頁面新建一個script標(biāo)簽
importJs.setAttribute("type","text/javascript")//給script標(biāo)簽增加type屬性
importJs.setAttribute("src", 'https://cdn.bootcdn.net/ajax/libs/jquery/3.6.0/jquery.min.js') //給script標(biāo)簽增加src屬性嚼松, url地址為cdn公共庫里的
document.getElementsByTagName("head")[0].appendChild(importJs)
②黏貼回車
// 獲取圖片集合
var gjc='orj360';var gjc2='thumb150';
var change='large';
$('.media_show_box + .pic_choose_box img').each(function (){?
var str=$(this).parents(".WB_expand_media_box"); var str2=$(this).parents(".WB_media_view ");
var src=$(this).attr("src");
if(src.indexOf(gjc) >= 0 ){
var that=src.replace(gjc,change);
}else{
that=src.replace(gjc2,change)
}
var newImg=document.createElement("img");
newImg.setAttribute('src', that);console.log(src);
newImg.setAttribute('style', 'max-height:300px;max-width:450px')
// str.append(newImg)
str.before(newImg)
});