$(selector).hover(handlerInOut)
。
等同于:$(
selector
).on(
"
mouseover
mouseout",
handlerInOut
)
就可以触发鼠标放上去的事件。
const imgList = document.getElementsByClassName('content')[0].getElementsByTagName('img')for(let i=0i<imgList.lengthi+=1){
$(imgList[i]).hover(function(){
$(imgList[i]).css("background-color","yellow")
},function(){
$(imgList[i]).css("background-color","transparent")
})
}
混着用的 js的写法复杂一点 所以引入了jq写的
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)