我写了个JQ的特效 但在IE9以下的游览器没效果
JQ代码在IE里接受不到 不知道怎么解决
我写了一个JQ的特效 但那段代码在IE9以下的游览器接受不到 请问有什么好的解决办法 比如说给那段代码加个判断之类的
function initHoverApply() {
$(".titler_one ul li").hover(function () {
$(this).find(".rsp").stop().fadeTo(500, 0.5);
$(this).find(".rsp_one").css("display", "block");
$(this).find(".rsp_one").stop().animate({ top: '0' }, { duration: 500 });
}, function () {
$(this).find(".rsp").stop().fadeTo(500, 0);
//$(this).find(".rsp_one").stop().animate({ top: '-180' }, { duration: "fast" });
$(this).find(".rsp_one").animate({ top: '53' }, { duration: 0 });
$(this).find(".rsp_one").css("display", "none");
});
}