Home > Backend Development > PHP Tutorial > jquery listnav插件在ios上面点击两次才能执行

jquery listnav插件在ios上面点击两次才能执行

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-06-20 12:30:02
Original
1106 people have browsed it

同上:jquery listnav插件在ios上面点击两次才能执行,安卓和pc浏览器都是点击一次就能切换,ios浏览器需要点击两次才有效果,用了中文排序。有大神有好的解决办法吗?

function bindHandlers() {				if (opts.showCounts) { $wrapper.mouseover(function() { setLetterCountTop(); }); }				if (opts.showCounts) { $('a', $letters).mouseover(function() { var left = $(this).position().left; var width = ($(this).outerWidth({ margin: true }) - 1) + 'px'; var count = getLetterCount(this); $letterCount.css({ left: left, width: width }).text(count).show(); }); $('a', $letters).mouseout(function() { $letterCount.hide(); }); }				$('a', $letters).click(function() {					$('a.ln-selected', $letters).removeClass('ln-selected'); var letter = $(this).attr('class').split(' ')[0]; if (letter == 'all') { $list.children().show(); $list.children('.ln-no-match').hide(); isAll = true; } else {						if (isAll) { $list.children().hide(); isAll = false; } else if (prevLetter != '') $list.children('.ln-' + prevLetter).hide(); var count = getLetterCount(this); if (count > 0) { $list.children('.ln-no-match').hide(); $list.children('.ln-' + letter).show(); }						else $list.children('.ln-no-match').show(); prevLetter = letter;					}					if ($.cookie && (opts.cookieName != null)) $.cookie(opts.cookieName, letter); $(this).addClass('ln-selected'); $(this).blur(); if (!firstClick && (opts.onClick != null)) opts.onClick(letter); else firstClick = false; return false;				});			}
Copy after login


回复讨论(解决方案)

把if (opts.showCounts)这一段注释就可以了。

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template