[JavaScript] bind、call、apply差異整理
2021-05-14
筆記整理JavaScript Function綁定this時常用的三種方法—bind()、call()、apply()
JavaScript
bind
call
apply
筆記整理JavaScript Function綁定this時常用的三種方法—bind()、call()、apply()
筆記整理JavaScript Array和Object運算方法 ==持續更新==
Install Linux Mint 20.1 in my new DeskMini X300 encounter problem in HDMI no sound. Also accompany "您的系統正在以無視硬體加速" warning, which makes my system reboot without control. Simply edit GRUB config to solve both problems.
<transition> in Nuxt is for "page", not the same as in Vue3 for component. Here provide a workaround of adding fade-in-and-out to " display: none; " components.
說明如何讓網頁在輸入錯誤的子路徑時,自動導向Error Page。 以asyncData hook內dispatch store action為例,透過catch action回傳的Promise reject()來設置nuxt context error function。
Build a back-to-top button in Nuxt. It's visible after scrolling down for a certain distance.
Describe how I customize Hamsterism's LoadingBar component. Especially make the progress bar fix at the specific position, not top 0.
Describe how I import debounce function of vue-debounce in Nuxt.
Describe how to color your "code" by highlight.js in Nuxt.
Describe how I import vue-quill-editor into Nuxt to build my customized article editor.
正規表達式(Regular Expression, RegExp)整理筆記
Vue component使用props提供路徑綁定時會遇到的問題
整理常用的CSS選擇語法與程式範例
筆記常用的五種GET、POST、PUT、PATCH、DELETE
說明常見setTimeout()與setInterval()的執行時間點 以及網頁渲染動畫時,比setInterval()效能更好的requestAnimationFrame()
筆記整理DOM事件傳遞與狀態
JS重要基礎觀念--primitive type & object type
html內要調用<script>內的function時, <script type = " module ">與<script type = " text/javascript ">有所差異!
JS老問題,整理效能及關鍵差異 getElementByXXX是Live NodeLists(動態) querySelector、querySelectorAll是Static NodeLists(靜態)
整理匯出、匯入module/function時,ES6的export/import語法
箭頭函式之return分為implicit(隱式)和explicit(顯式) 搬運stackoverflow大神之說明做筆記
向使用者發起取得當前位置的請求 navigator.geolocation的應用
使用Chrome瀏覽器渲染MathML數學公式
筆記updated與watch對於「改變」的差異
介紹Git安裝、帳號設定、初始化、.gitignore、狀態、commit、歷史紀錄
Git刪除檔案與還原
Git標籤(tag)、分支(branch)、合併(merge)、重設基底(rebase)
Git remote repo--Github相關操作
Blog首頁幻燈片特效實作--by pure CSS
JavaScript Date Object之應用:取得當前時間、時間轉換、時間排序
在Vue 3使用transition為不同的<router-view>加上轉場動畫 關鍵:要綁key!!!
常見的純CSS打字動畫會綁定white-space: nowrap; 在切換至手機板或寬幅不夠時,動畫效果無法響應畫面尺寸 故以簡單的CSS,搭配JavaScript來實踐可換行的打字動畫效果