我已经阅读了很多关于这个主题的帖子,发现几乎总是相同的解决方案,但它对我不起作用......
我的问题如下:我想使用Twitter Bootstrap 2.3.2及其导航栏,所以我包含了css和js文件。就在此之前,我还包括jquery。然后,我在bootstrap网站上给出了一个非常好的例子。但是,我现在想要将菜单项设置为活动状态,并从所有其他项中删除活动类。我在bootstrap.js文件中看到此函数是内置的,因此不再包含脚本代码。问题是菜单项永远不会切换为活动状态。然后我尝试添加一个jquery脚本来强制删除所有活动类,并将活动类添加到单击的一个项目中。什么都没发生。
所以,请帮忙!我在jsfiddle中尝试了相同的代码并且工作正常,问题来自于玉?从快递布局?如何解决?
以下是我使用的代码:
server.js
var express = require('express');
var app = express();
var port = 3000;
app.set('view engine', 'jade');
app.set('view options', {layout: true});
app.set('views', __dirname + '/views');
app.configure(function () {
this.use(express.cookieParser());
this.use(express.session({ secret: 'shhhhhhhhh' }));
this.use(express.static(__dirname + '/public'));
this.use(app.router);
});
app.get('/', function (req, res) {
res.render('index')
});
});
app.get('/about', function (req, res) {
res.render('about')
});
});
app.listen(port, function () {
console.log('listening in http://localhost:' + port);
});
/views/layout.jade
!!! 5
html
head
title Test Application
link(type='text/css', rel='stylesheet', href='/css/site.css')
link(rel='stylesheet', href='//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/css/bootstrap.min.css')
script(src='//ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js')
script(src='//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/js/bootstrap.min.js');
body
div.navbar.navbar-inverse.navbar-fixed-top
div.navbar-inner
div.container
button.btn.btn-navbar(type='button', data-toggle='collapse', data- target='.nav-collapse')
span.icon-bar
span.icon-bar
span.icon-bar
a.brand(href='#') Login Test Application
div.nav-collapse.collapse
ul.nav
li.active
a(href='#') Home
li
a(href='#about') About
li
a(href='#Contact') Contact
div.container
block content
/views/index.jade
extends layout
block content
div.span6.offset3
h1 Test Application
div.span12
h2 Test application!
p This is a test application
button.btn.btn-success(type='button', onclick='')') Login
/views/about.jade
extends layout
block content
div.span6.offset3
h1 - About -
答案 0 :(得分:10)
你可以在你的玉石布局中尝试类似的东西:
li(class=title=='Home'?'active':undefined)
a(href="/") Home
li(class=title=='About'?'active':undefined)
a(href="/about") About
li(class=title=='Contact'?'active':undefined)
a(href="/contact") Contact
然后将其添加到您的server.js:
app.get('/', function (req, res) {
res.render('index', title: 'Home')
});
app.get('/about', function (req, res) {
res.render('about', title: 'About')
});
这样,您还可以删除布局中的硬编码标题,并通过以下解决方案对其进行修改:
title #{title} | Test Application
它会将此作为您家的标题:
Home | Test Application
答案 1 :(得分:3)
这是我找到的解决方案(我没有链接,对代码所有者很抱歉)
ul.nav
-var obj = { 'home':'Home', 'about':'About', 'contact':'Contact' }
-each val, key in obj
-if (id == key)
li.active
a(href='#{key}') #{val}
-else
li
a(href='#{key}') #{val}
我将server.js设置为
app.get('/about', function (req, res) {
res.render("about", {
title: 'About',
id: 'about',
user: JSON.stringify(req.user, 0, 2)
});
});