function debounce(func, delay){ // timeout 初始值let timeout = null; return function(){ let context = this; // 指向myDebounce 這個input let args = arguments ...
確定! 回上一頁