0
我有類detail
的箭頭,點擊事件後,我添加class'close'。爲jquery動態添加類的功能
如何設置close
這個箭頭的功能?
var arrow = document.querySelector('.arrow-down.detail');
var imgs = document.querySelectorAll('div.img');
for (i = 0; i < imgs.len; i++) {
imgs[i].onclick = function(e) {
this.classList.add('active');
arrow.style.transform = 'translate(-50%, -50%) rotate(90deg)';
arrow.style.color = '#000';
arrow.style.borderColor = '#000';
arrow.classList.add('close');
}
};
我需要的是這樣的:
$('.detail.close').click(function(){
})
目前尚不清楚您需要什麼。 –
我需要用關閉'img'塊的'close'來爲箭頭設置函數。 –
實際上,我忘了寫'this.classList.add('active')' –