jquery-2.1.1.min.js Openwrt Luci

时间:2014-11-18 16:09:19

标签: openwrt luci

我试图在openwrt上创建我的模块。我为luci制作了简单的页面,现在需要jQuery。所以我添加

<script type="text/javascript" src="/resources/jquery-2.1.1.min.js"></script>

到我的htm文件。但浏览器会为jquery-2.1.1.min.js返回404。

如何在luci中添加jquery-2.1.1.min.js

1 个答案:

答案 0 :(得分:1)

SSH到您的路由器并发出以下命令,以便在您设备的网络目录中的适当位置下载 jquery-2.1.1.min.js

$ cd /www/luci-static/resources
$ wget http://code.jquery.com/jquery-2.1.1.min.js

将下载的JQuery源包含在HTML文件中,如下所示:

<script type="text/javascript" src="/luci-static/resources/jquery-2.1.1.min.js"></script>

这应该可以做到!