我开始使用jquery插件,因此决定去Alertify。
我访问了该网页:
http://fabien-d.github.io/alertify.js/

它告诉我使用Bower软件包管理进行安装。他们甚至为我们提供了代码。
我想知道的是在哪里写这段代码:

$ bower install alertify


我应该将其写在html文件,css文件还是jquery文件中。

最佳答案

为什么不只使用该站点上编写的“插入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的信息。

关于jquery - 在哪里编写Bower代码以安装Alertify?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/17946128/

10-11 23:43