我开始使用jquery插件,我决定去看看Alertify。 我访问了网页: http://fabien-d.github.io/alertify.js/
它告诉我使用bower包管理进行安装。他们甚至为我们提供代码。 我想知道的是在哪里写这段代码:
$ bower install alertify
我应该在html文件,css文件还是jquery文件中编写它。
答案 0 :(得分:4)
为什么不直接使用在该网站上编写的“插入HTML”方法?
包含JS
<!-- ideally at the bottom of the page -->
<!-- also works in the <head> -->
<script src="PATH_TO_FILE/alertify.min.js"></script>
包含CSS
<!-- include the core styles -->
<link rel="stylesheet" href="PATH_TO_FILE/alertify.css" />
<!-- include a theme, can be included into the core instead of 2 separate files -->
<link rel="stylesheet" href="PATH_TO_FILE/alertify.default.css" />
如果你想使用Bower,你应该使用node.js.您可以在github page找到有关Bower的信息。
答案 1 :(得分:0)
要回答您的问题,请将其输入命令行。 Bower是一个从命令行运行的包管理器,需要Node和npm。如果您刚刚开始使用jQuery插件,我认为下载并将插件包含在您的项目中会更容易。