2

iPad 上 Mobile Safari 中的 HTML5 模板。带有 iScroll 的 Div 工作正常。if/else 语句中还包含一个 jQuery 函数。该函数测试用户是否在 iScroll div 之外点击,如果是,则淡化 iScroll div。
问题是,如果用户在页面上的第二个 div 之外点击,if/else 语句可以很好地作为测试,但如果用户在 iScroll div 之外点击,则不能作为测试。不知道为什么,在 if/else 语句中尝试了所有与 iScroll div 关联的 div ID,但没有用。
功能如下:

var articleBodyEl = document.getElementById('content');
articleBodyEl.addEventListener("touchend", function() {
var $target = $(event.target);
if ($target.is('ul#article_images') || $target.is('ul#article_images li') || $target.is('div#article')) {
    //do nothing
} else {
    $('#article').fadeToggle('fast');
}
});

#article = iScroll div

#article_images = 页面上的单独 div,测试用户是否在此 div 外部单击工作正常。
HTML:

<div id="article">
<div id="article_content">
   <div id="scroller">
   <div id="text_1" class="article_text">
    <h4>Wish you were here</h4>
    <p>Sometimes we stumble upon a photograph that requires no words whatsoever. An image that proves the ancient adage that a good picture is worth a thousand words (and probably more, if some of them are small words like ‘if’, ‘it’ and ‘er’). </p>
   </div>
   </div>
</div>
</div>
4

1 回答 1

0

尝试用以下内容替换 if/else,

if (!$target.is('div#article')) { 
    $('div#article').fadeToggle('fast');
}

如果内容 div 是 iScroll div 的父级,那么您可能必须在 iScroll 的 touchend 事件上停止传播。

于 2012-04-08T09:53:07.300 回答