NAV子菜单悬停在触摸屏上

时间:2016-05-19 11:49:05

标签: jquery html css user-interface drop-down-menu

<build>
  <plugins>
    <plugin>
       <groupId>org.apache.maven.plugins</groupId>
       <artifactId>maven-resources-plugin</artifactId>
       <configuration>
          <!-- Required so that .gitignore gets included in archetypes; see https://issues.apache.org/jira/browse/MRESOURCES-190 -->
          <addDefaultExcludes>false</addDefaultExcludes>

在触摸屏上悬停不起作用,因为我已将主导航链接到页面。所以从触摸屏设备点击它会重定向,但我需要显示子菜单。请帮我用相同的代码排序。

1 个答案:

答案 0 :(得分:0)

如果你有这样的HTML:

<a href="#">Do Something</a>

你可以用jQuery做这样的事情:

$("a").on('click', function( event ) {

  // preventDefault prevents your site from navigating away
  event.preventDefault(); 

  // your code here to show submenu or change classnames
  alert('prevented navigation');
});