在Grails中引用CSS文件和JS文件 - twitter-bootstrap

时间:2014-05-12 16:46:39

标签: javascript html twitter-bootstrap grails

我创建了一个Grails项目。现在我想使用twitter-bootstrap。我已成功安装bootstrap。但我想知道如何在index.html page

中引用以下3个链接
<r:require modules="bootstrap" />
<r:layoutResources />
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet"
    href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">

<!-- Optional theme -->
<link rel="stylesheet"
    href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap-theme.min.css">

<!-- Latest compiled and minified JavaScript -->
<script
    src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>

1 个答案:

答案 0 :(得分:1)

如果您安装了bootstrap插件,则只需调用所需的模块

即可

BuidConfig.groovy

compile ":twitter-bootstrap:2.3.2"

然后在GSP

<r:require modules='bootstrap-css, bootstrap-js, bootstrap-modal, ...'/>