我最近从这个开发者的网站实现了一个 jQuery 下拉列表:http: //tympanus.net/codrops/2012/10/04/custom-drop-down-list-styling/,它在我的 Chrome 网站上看起来和工作正常Firefox(我的网站是:http ://www.ExpeditionerSafaris.com )。
但是,在 Internet Explorer(当然)中,li 链接不起作用。
这是代码:
function DropDown(el) {
this.dd = el;
this.initEvents();
}
DropDown.prototype = {
initEvents: function () {
var obj = this;
obj.dd.on('click', function (event) {
$(this).toggleClass('active');
event.stopPropagation();
});
}
}
$(function () {
var dd = new DropDown($('#dd'));
$(document).click(function () {
// all dropdowns
$('.wrapper-dropdown-5').removeClass('active');
});
});