js中常見面試問題-筆記

來源:互聯網
上載者:User

標籤:ons   doc   i++   item   weixin   rgs   作用   頁面   調整   


原文參考https://mp.weixin.qq.com/s/mCVL6qI33XeTg4YGIKt-JQ

1.事件代理
給父元素添加事件,利用事件冒泡原理,在根據e.target來擷取子項目
<ul id="parentBox">
<li class="item">1</li>
<li class="item">2</li>
<li class="item">3</li>
</ul>
let parentBox = document.getElementById(‘parentBox‘);
parentBox.addEventListener(‘click‘,function(e){
if(e.target && e.target.nodeName === ‘LI‘){
let item = e.target;
console.log(item);
}
})
2.在迴圈中使用閉包
var arr = [1,2,3,4,5];
for(var i=0; i<arr.length; i++){
setTimeout(function(){
console.log(i)
},1000)
}
輸出結果為:5,5,5,5,5
想要讓i輸出0,1,2,3,4
方法一使用閉包
for(var i=0; i<arr.length; i++){
setTimeout(function(j){// 這裡將值傳入
console.log(j)// 這裡接受
}(i),1000)// 閉包的使用
}
方法二let關鍵字
for(let i=0; i<arr.length; i++){
setTimout(function(){
console.log(i)
},1000)
}
3.滾動頁面和視窗調整時,觸發事件。
核心思想利用setTimeout延遲功能,來處理事件。
// 參數一接受執行函數,參數二延遲時間
function debounce(fn,delay){
// 維護一個timer
let timer = null;
// 能訪問timer的閉包
return function(){
// 通過this和arguments擷取函數的範圍和變數
let context = this;
let args = arguments;
// 如果事件被調用,清除timer然後重新設定timer
clearTimeout(timer);
timer = setTimeout(function(){
fn.apply(context,args);
},delay);
}
}

js中常見面試問題-筆記

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.