我已经搜索并试图找出我的代码出了什么问题。我想完全以某个屏幕宽度隐藏导航栏,但我什么也没得到。 JS小提琴和Code Pen找不到任何东西,而Safari并未显示语法错误。我只有一个月的时间,在此感谢您的帮助。

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>No clue what I am doing</title>
    <link href="css/bootstrap.min.css" rel="stylesheet"/>
    <link href="stylesheet.css" rel="stylesheet" type="text/css" />
  </head>
  <body>
 <nav class="navbar-default">
  <div class="container-fluid">
    <!-- Brand and toggle get grouped for better mobile display -->
    <div class="navbar-header">
      <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
        <span class="sr-only">Toggle navigation</span>
        <span class="icon-bar"></span>
        <span class="icon-bar"></span>
        <span class="icon-bar"></span>
      </button>
    </div>
    <!-- Collect the nav links, forms, and other content for toggling -->
    <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
      <ul class="nav navbar-nav">
        <li><a href="#">Link</a></li>
      </ul>
    </div><!-- /.navbar-collapse -->
  </div><!-- /.container-fluid -->
</nav>

     <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
    <script src="http://code.jquery.com/jquery-2.1.3.min.js"></script>
    <script src="js/bootstrap.min.js"></script>
    <script src="java.js" type="text/javascript"></script>
  </body>
</html>

JAVASCRIPT
$(document).ready()
var width = function(checkWidth) {
if(window.width>768) {
$("nav .navbar-default").hide()
} else {
$("nav .navbar-default").show()
}
};
width;

最佳答案

您需要在页面加载以及屏幕调整大小时加载脚本。这可能会有所帮助:

function toggleDiv(){

    if ($(window).width() < 768) {

            $("nav.navbar-default").hide();

    }else{

        $("nav.navbar-default").show();

    }

}

$(document).ready(function () {
    toggleDiv();

    $(window).resize(function(){
        toggleDiv();
    });

});

或者,您可以只使用像这样的媒体查询:
@media (max-width: 768px) {
    .navbar-default {
        display: none !important;
    }
}
@media (min-width: 769px) {
    .navbar-default {
        display: block !important;
    }
}

10-02 15:29