所以我有一个菜单写成表格的嵌套列表:
<ul id="nav-secondary" class="menu">
<li><a href="javascript:;">About Us</a>
<ul>
<li><a href="http://our.site.com/about-us/index.php">Our History</a></li>
<li><a href="http://our.site.com/about-us/affiliates.php">Affiliated Stuff!</a></li>
<li><a href="http://our.site.com/about-us/what-is-science/index.php">What is Science?</a></li>
<li><a href="http://our.site.com/about-us/cognoscente-email-list.php">Cognoscente Email List</a></li>
<li><a href="http://our.site.com/about-us/life-in-bloomington.php">Life In Bloomington</a></li>
<li><a href="#">Science Links</a>
<ul>
<li><a href="http://our.site.com/about-us/science-links/current-issues.php">Current Issues</a></li>
<li><a href="http://our.site.com/about-us/science-links/experiments.php">Experiments</a></li>
<li><a href="http://our.site.com/about-us/science-links/scientists.php">Some scientists</a></li>
<li><a href="http://our.site.com/about-us/science-links/professional-organizations.php">Professional Organizations </a></li>
</ul>
</li>
<li><a href="http://our.site.com/about-us/contact-information.php">Contact Us</a></li>
<li><a href="http://our.site.com/about-us/spotlights.php">Spotlights</a></li>
<li><a href="http://our.site.com/about-us/employment.php">Employment</a></li>
</ul>
</li>
.
.
.
这已经有一段时间了。我写了一些jQuery来给它一个很好的滑动效果。这是在文档就绪功能中。
$('#nav-secondary li ul').hide();
$('#nav-secondary li a').each(function () {
var a = $(this);
var href = $(this).attr('href');
var current_page = window.location.pathname;
if(href.indexOf(current_page) !== -1 && current_page !== "/" && current_page!== "/index.php") {
$(this).addClass('active');
$(this).parents().addClass('active');
$(this).parents().show();
$(this).attr("href", "javascript:;");
}
});
$('#nav-secondary li > a').on('click touchstart', function() {
if ($(this).attr('class') != 'active'){
$(this).next().slideToggle();
$(this).parents().addClass('active');
} else {
if(href.indexOf(current_page) !== -1 && current_page !== "/") {
$(this).slideToggle();
}
}
});
因为我们希望人们能够使用他们的iPad浏览我们的网站。在iPad上,滑动菜单有效,但页面上没有任何链接,除非你用手指按住它们,在这种情况下你会给Safari提供允许你的对话框打开它/在新的选项卡/窗口/等中打开它。除滑动菜单部分外,所有链接都需要触摸保持才能打开它们。
答案 0 :(得分:1)
您是否有机会使用jQuery mobile?
你在jQuery中学到的第一件事就是在$(document).ready()函数中调用代码,这样一旦加载了DOM,一切都会执行。但是,在jQuery Mobile中,Ajax用于在导航时将每个页面的内容加载到DOM中,而DOM ready处理程序仅针对第一个页面执行。要在加载和创建新页面时执行代码,您可以绑定到pageinit事件。此事件在本页底部详细说明。
答案 1 :(得分:0)
如果您使用的是webview,那么您必须了解Web视图包含一些委托方法,以便从该委托方法中找到您需要像这样调用URL的单击事件
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"www.google.com"]];
这是在单击Web视图中的任何链接时将触发的委托方法
-(BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType
{
if (navigationType == UIWebViewNavigationTypeLinkClicked) {
{
[[UIApplication sharedApplication] openURL:[request URL]];
}
}
答案 2 :(得分:0)
所以有一个弹出式js文件有一些关于悬停的代码。这段代码没有任何问题。
这里的主要问题是iPad可以将点击事件注册为与touchend听众竞争的悬停。
iPad/iPhone hover problem causes the user to double click a link
答案 3 :(得分:-1)