|
$(document).ready(function () {
// 获取当前 URL 上的 forum ID
let forum_id = parseInt(location.search.match(/fid=(\d+)/)[1]);
// 定义标记版块标题为红色的 CSS 样式
let css = '.fl_g dt a {color: red !important;}';
// 创建 style 元素并将样式添加到其中
let style = document.createElement('style');
style.appendChild(document.createTextNode(css));
// 添加 style 元素到 head 中
document.head.appendChild(style);
// 将版块标题修改为红色
$('.fl_g.dt a[href*="forum.php?mod=forumdisplay"]').each(function () {
let href = $(this).attr('href');
let fid = parseInt(href.match(/fid=(\d+)/)[1]);
if (fid === forum_id) {
$(this).css('color', 'red');
// 延时 24 小时后去掉红色标记
setTimeout(function () {
$(this).css('color', '');
}, 86400000); // 24 * 60 * 60 * 1000
}
});
});
|
|