子版块
 |
手游回收站存放因为帖子链接失效而暂时进入补链期的手游资源帖子 |
47 / 916 |
|
手游名称: |
|
主题类型: |
|
手游玩法: |
|
画面类型: |
|
操作系统: |
|
游戏平台: |
|
架设难度: |
|
Powered by 教私服论坛 © 2016-2024
if (!box || box.dataset.inited) return;
box.dataset.inited = 1;
/* 1. 检测文字(纯文本节点) */
var hasText = Array.from(box.childNodes).some(
n => n.nodeType === Node.TEXT_NODE && /\S/.test(n.textContent)
);
/* 2. 检测图片 */
var imgs = box.querySelectorAll(
'img[file],img[data-original],img[src*="attachment"],a[href*="attachment.php"]'
);
/* 3. 无内容直接退出 */
if (!hasText && !imgs.length) return;
/* 4. 插入文字标题(在首位) */
if (hasText) {
var hText = document.createElement('h5');
hText.className = 'post-head';
hText.textContent = '资源说明';
box.insertBefore(hText, box.firstChild);
}
/* 5. 插入图片标题(在每个
![]()
后,CSS让它视觉上在上) */
imgs.forEach(function (img, idx) {
if (idx === 0) { // 只在第一张图前插一次
var hImg = document.createElement('h5');
hImg.className = 'post-head post-head-img';
hImg.textContent = '相关配图';
img.parentNode.insertBefore(hImg, img);
}
});
})();