下拉菜单单击 [英] Drop Down Menu Click

查看:67
本文介绍了下拉菜单单击的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

应该是一个简单的问题...


我的NAV栏模板(工作):



确保Bootstrap正确加载。它看起来像你试图在三个地方添加bootstrap。

最好使用CDNetworks。这里是bootstrap的链接 cdn



另外你有一个脚本错误:

$ $ p $ $ $ $ c $ $(window).scroll(function(){
if($(document ).scrollTop()> 50){
$('nav').addClass('shrink');
} else {
$('nav')。removeClass('shrink ');
}
});
//}); //删除此



注意:



您正在使用HTTPS,但以不安全的方式请求一些资源。使用 https:// 来包含图片,CSS,js等所有资源。


Should be an easy question...

My NAV Bar Template (working): https://codepen.io/ScottFSchmidt/pen/GMzgKz

...imported into my Portfolio (is NOT working): https://scottschmidtportfolio.000webhostapp.com/#
The menu is not going down on click(the menu appears when the screen is smaller).

What is causing this? I have a feeling it is something within my scripts (below): EDIT NEW UPDATED SCRIPTS from https://www.bootstrapcdn.com/:

 <!DOCTYPE HTML>
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">

<title>SS Studio</title>
<meta charset = "UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<meta http-equiv="X-UA-Compatible" content="IE=edge" >
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/css/bootstrap.min.css"></script>
<script src="https://use.fontawesome.com/fab417e5fd.js"></script>

<script language="javascript">

解决方案

Check the console:

Make sure Bootstrap loaded correctly. It look like you are trying to add bootstrap in three places.

Better to use CDNetworks. Here is the link for bootstrap cdn

Also you had one script error:

 $(window).scroll(function() {
       if ($(document).scrollTop() > 50) {
           $('nav').addClass('shrink');
       } else {
         $('nav').removeClass('shrink');
       }
   });
 // }); // remove this

Caution:

You're using HTTPS but some resources are requested in an insecure way. use https:// for including all the resources like images, css, js, etc

这篇关于下拉菜单单击的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆