http://www.cheryldesign.com/category/portfolio/응답 웹 사이트 - 모바일 크기 - 당신이 아래로 넓은 475px 아래의 브라우저를 축소 할 때 jQuery를 탭, 위의 페이지에서
작동하지 않습니다이 탭은 더 이상 클릭 할 수 없습니다. 나는 이것을 일주일 동안보고 있었고 무슨 일이 일어나고 있는지 알 수 없다.
jQuery(document).ready(function()
{
jQuery("#access").accessibleDropDown();
});
jQuery.fn.accessibleDropDown = function()
{
var el = jQuery(this);
/* Setup dropdown menus for IE 6 */
jQuery("li", el).mouseover(function() {
jQuery(this).addClass("hover");
}).mouseout(function() {
jQuery(this).removeClass("hover");
});
/* Make dropdown menus keyboard accessible */
jQuery("a", el).focus(function() {
jQuery(this).parents("li").addClass("hover");
}).blur(function() {
jQuery(this).parents("li").removeClass("hover");
});
}
굉장! 뭔가를 덮고 있다고 생각했지만 찾지 못했습니다. – user1813305
@ user1813305 - 잊지 말고 대답이 "수락"으로 표시 될 수 있습니다. – Stuart