猿问

用jquery怎么实现?


如题:

$("li").mouseenter(function(){

        this.children(".subNav").style.overflow="visible"

    })

并没有效果

精慕门8775560
浏览 1131回答 2
2回答

陈士愚

$("li").mouseenter(function(){         this.children(".subNav").css("overflow","visible");     })jquery的css设置值方法。this.children(".subNav")选取的是jquery的元素;而.style.overflow的用法用于原生js的元素。这两种不兼容。

一杯2块的奶茶

楼上正解
随时随地看视频慕课网APP

相关分类

JavaScript
我要回答