隻影響本身的博客園隨筆詳情的處理方法css
我是將這段代碼放在 設置
-> 頁腳Html代碼
js代碼中的,代碼以下:html
// post detail copy the post info after the post title setTimeout(function(){ if($("#post_detail").length > 0 && $(".postDesc").length <= 1){ $("#post_detail .post .postTitle").eq(0).append("<div class='clear'></div>").after($("#post_detail .post .postDesc").clone()); } },1000);
想這樣處理,是由於以前有人提過 閃存 中提過 博客園啊, 能不能把每篇博客的日期和點贊放在標題下面?
別人的博客是控制不了的,可是隻能改變本身的博客,但這隻影響本身的博客jquery
使用 油猴腳本,影響的是看其它博主的隨筆詳情時,底部 隨筆信息.postDesc
會顯示在 隨筆標題後面web
效果如圖:chrome
點擊油猴圖標(狀態應是 "已啓用"), 添加新腳本
,將如下內容複製在腳本窗口中,而後 文件
-> 保存
, 而後刷新一下博客園中博主的隨筆詳情頁面,底部的隨筆信息理應會顯示的隨筆標題後面app
// ==UserScript== // @name 博客園隨筆詳情頁,隨筆標題後顯示底部信息 // @namespace http://tampermonkey.net/ // @version 0.1 // @description 博客園隨筆詳情,將文章內容底部信息複製顯示到文章詳情的標題下面,參考了 http://chromecj.com/web-development/2018-07/1468.html // @author wakasann // @grant none // @include https://www.cnblogs.com/*/p/* // @match https://www.cnblogs.com/*/p/* // @require https://cdn.bootcss.com/jquery/2.2.1/jquery.min.js // ==/UserScript== (function() { 'use strict'; jQuery(function($){ setTimeout(function(){ // post detail copy the post info after the post title if($("#post_detail").length > 0 && $(".postDesc").length <= 1){ $("#post_detail .post .postTitle").eq(0).append("<div class='clear'></div>").after($("#post_detail .post .postDesc").clone()); } },500); }); })();
發佈了油猴腳本博客園隨筆詳情頁,隨筆標題後顯示底部信息post