前些天我想着錄一些技術視頻。一開始我是想發抖音上的,由於抖音的觀看體驗是最好的。 可是因爲沒有粉絲,我也發不了長視頻。後來我發貼問了一下技術視頻發哪裏比較好,V2不少同窗推薦 B 站。 因而我發 B 站了。編程
如今一差很少一週過去了,我總共上傳了 10 多個視頻。若是能夠的話但願你們能夠點贊加關注。 算是對個人鼓勵和幫助,爲此我會十分感激。 也歡迎你們提出建議和意見。數組
以下是我本週分享的視頻列表:markdown
上述列表是我用以下 js 從頁面提取出來了,省了很多力氣。ide
let results = []; let posts = document.querySelectorAll("div.article-card"); for (const post of posts) { const a = post.querySelector(".meta-title > a"); const href = a.href; const title = a.textContent; results.push(`${results.length + 1}. [${title}](${href})`); } console.info(results.join("\n")); 複製代碼