1

所以我在 iphone/ipad 上呈现的页面中的点击事件遇到了一些困难。这适用于我检查过的所有桌面浏览器以及 android 中。问题在于单击页脚中的 LI。我试图通过以下方式将点击事件附加到页脚元素:

$('#footer li').live('click', function(e) { 

        Site.loadpage($(this).attr('page') + '.html');

});

但什么也没有发生(没有 javascript 错误或任何东西)。因此,为了获取更多信息,我添加了一个更通用的点击事件,也许我会发现其他一些元素阻碍了捕获事件的方式:

$('*').live('click', function(e) { 

    alert(e.target);

});

通过此事件,我可以单击页面上的任何位置,并收到有关我单击的元素类型的警报。除了在页脚中,什么都没有发生。

这是有关我正在使用的页面的更多信息,如有必要,我可以提供更多信息,唯一可能相关的另一件事是我正在为此使用 jquery(显然)。

我有一个具有以下结构的页面:

<body>
        <div id="header">

        </div>

        <div id="content">

        </div>

        <div id="footer">
            <ul>
                <li page="projects" class="projects"><span>Projects</span></li>
                <li page="people" class="people active"><span>People</span></li>    
                <li page="assignments" class="assignments"><span>Assignments</span></li>
                <li page="search" class="search"><span>Search</span></li>
                <li page="more" class="more"><span>More</span></li>
            </ul>
        </div>
</body>

以及以下 CSS:

html { 

    height:100%; 
    width: 100%;
    margin:0; 
    overflow: hidden; 
    padding: 0px; 
    position: fixed;
    text-shadow: 0px 0px 0px transparent !important;
    letter-spacing: 0px;
    font-family: Helvetica;
    font-weight: bold;
}

body { 

    padding: 0px;
    margin: 0px; 
    height: 100%;
    width: 100%;
    overflow: hidden;
    font-family: Helvetica;
}

#header { 

    background: url(../images/devices/iphone/header.jpg); 
    color: white;
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    height: 45px; /* ADJUST FOR IPAD */
    box-shadow: -5px -5px 4px 7px #888;
}

#header .center { 

    position: static;
    display: block;
    width: 100%;
    max-height: 45px; /* ADJUST FOR IPAD */
    text-align: center;

}

#header h1.center { margin: 8px 0px 10px 0px; }

#content { 

    position: absolute;
    bottom: 48px;
    top: 45px;
    left: 0px;
    right: 0px;
    overflow: hidden;



}

#footer { 

    background: url(../images/devices/iphone/header.jpg);
    background-size: 48px 100%;
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    height: 48px; /* ADJUST FOR IPAD */
    color: white;
    text-align: center;
}

#footer { text-align: center; }
#footer ul { list-style-type: none; padding-left: 0px; margin-left: auto; margin-right: auto; margin-top: 1px; font-size: 8px; }
#footer li { padding-top: 35px; padding-bottom: 1px; display: inline-block; background-image: url(../images/inactive-menu.png); width: 62px; background-size: 312px; }
#footer li.active { background-image: url(../images/active-menu.png); }
#footer li span { width: 57px; padding-top: 10px; }
#footer li.projects { background-position: 0px 0px;}
#footer li.people { background-position: -62px 0px;}
#footer li.assignments { background-position: -124px 0px;}
#footer li.search { background-position: -187px 0px;}
#footer li.more { background-position: -250px 0px;}
4

3 回答 3

2

出于某种原因,我不相信 iOS 中的 live 作品。尝试 .on() ,应该可以。

$('*').on('click', function(e) { 

    alert(e.target);

});
于 2012-11-08T21:38:01.677 回答
2

我有同样的问题。试图在此页脚元素上提醒事件没有运气。偶然我尝试了:

$('*').on('touchend', function(e) {});

请注意,我使用 'touchend' 作为触发事件,并且还设置了:

cursor: pointer;

在 iPhone 3GS、iOS 5.1.1 上测试。

祝你好运。

于 2013-01-03T22:52:40.967 回答
0

为什么不使用触摸事件而不是单击事件,它是鼠标事件,而不是触摸屏事件 - touchstart 和 touchend 作为触摸屏事件更有意义

于 2012-11-08T22:02:59.240 回答