我在Web应用程序中创建了响应式导航栏,以浏览4个视图。共享布局中包含的导航栏和该布局已添加到所有视图中。
由于我在Visual Studio 2017中使用MVC开发Web应用程序,因此我使用了通用代码制作导航栏。并且我将路由配置配置为{controller} / {action}。我尝试过的代码如下。
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width" />
<link href="~/Content/nav.css" rel="stylesheet" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="icon" href="~/Content/favicon/favicon.ico" type="image/x-icon">
<title>
Nikini Learning CRM System
</title>
<script src="~/Scripts/layout.js"></script>
</head>
<body>
<navbar>
<div class="topnav" id="myTopnav">
<a href="Home/Index">Home</a>
<a href="Login/login">Login</a>
<a href="Payment/payment"> Payment </a>
<a href="Register/register">Customer Registration</a>
<a href="javascript:void(0);" class="icon" onclick="myfunction()">
<i class="fa fa-bars"></i>
</a>
</div>
<div>
@RenderBody()
</div>
</navbar>
</body>
</html>
我在代码中找不到任何错误,即使我尝试通过导航栏转到另一页,也会显示服务器错误。请通过简单的答案帮助我解决这个问题。
导航栏的CSS文件如下。
body {
margin: 0;
font-family: Arial, Helvetica, sans-serif;
}
.topnav {
overflow: hidden;
background-color: #333;
}
.topnav a {
float: left;
display: block;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
.topnav a:hover {
background-color: #ddd;
color: black;
}
.topnav a.active {
background-color: #4CAF50;
color: white;
}
.topnav .icon {
display: none;
}
@media screen and (max-width: 600px) {
.topnav a:not(:first-child) {
display: none;
}
.topnav a.icon {
float: right;
display: block;
}
}
@media screen and (max-width: 600px) {
.topnav.responsive {
position: relative;
}
.topnav.responsive .icon {
position: absolute;
right: 0;
top: 0;
}
.topnav.responsive a {
float: none;
display: block;
text-align: left;
}
}
用于导航的JS文件,如下所示。
function myFunction() {
var x = document.getElementById("myTopnav");
if (x.className === "topnav") {
x.className += " responsive";
} else {
x.className = "topnav";
}
}