1. List of articles

  1. Vscode Usage Guide
  2. Vue. Config. Js
  3. Sass summary
  4. MAC Keyboard Maestro Editor Operation guide
  5. recursive
  6. The proxy agent
  7. The article lists
  8. Mpvue project trampling collection
  9. Code snippet
  10. A summary of some useful ES6 features and syntax
  11. MAC Keyboard Maestro Guide
  12. Some common code snippets in vUE projects
  13. Summary of the package management tool YARN
  14. Linux Command Summary
  15. Js public function summary 2, very useful
  16. Use of Webstorm on MAC
  17. Summary of HBuilderX related issues
  18. Micro channel small program knowledge summary
  19. SVN summary
  20. Summary of vUE’s custom directive directive
  21. Summary of common components commonly used in VUE
  22. Click on the V-Viewer plug-in to enlarge the vUE image on PC
  23. Determine whether it is a development environment or a production environment
  24. Keep a record of the books I read
  25. Object summary, object summary
  26. Git command summary, git related knowledge summary
  27. Build your own KOA, emulating the Onion ring model of KOA
  28. In summary, ESLint reports error related issues
  29. Vscode adds custom snippets
  30. Vue-router Parameter transmission summary, vue-router parameter transmission in query and params parameters difference
  31. Js-cookie Summary: VUE builds projects using jS-cookie plug-ins
  32. Vant Summary, Vant usage guide
  33. Summary of HTML and CSS
  34. Part of the file code for the Web-MSgService project
  35. Vue – the router
  36. The filter summary
  37. ECharts summary
  38. Webpack reports error summary
  39. Summary of judging data types (Main)
  40. Closure Summary (Main)
  41. Js new Date()
  42. Sort array objects, sort summary
  43. Summary of various for loop methods
  44. interview
  45. Array summary (main), js array
  46. Element – the UI
  47. GitLab use summary
  48. NPM Common commands and knowledge summary NPM summary
  49. Select custom search method in element-UI
  50. Vuex summary
  51. Summary of common MAC keyboard shortcuts
  52. Some problems you might encounter in the Vue-element-admin project
  53. React Summary (Basics)
  54. Summarize some trivial points
  55. Flex Layout Summary
  56. React Scaffolding installation steps
  57. Summary of Ajax related knowledge points
  58. Sort algorithm
  59. Js common public functions summary, suggested collection (continue to update)
  60. Regular Expression (RegExp) Regex summary (JS related)
  61. Vue-cli installation on MAC
  62. Summary of Async and Await
  63. Promise Summary (Main)
  64. Markdown summary
let ul = document.getElementsByClassName('post-list-box');
console.log("%c ul "."background-image:color:transparent; color:blue; font-size:2em");
console.log(ul);
let allA = ul[0].getElementsByClassName('title');
let str = ''
for (let i = 0; i < allA.length; i++) {
    let title = allA[i].getAttribute('title');
	str+=`${i+1}. [${title}](${allA[i].href})\n`
}
console.log('44444------  str  -----44444');
console.log(str);
Copy the code