原文地址:http://blog.csdn.net/wzk527/article/details/8494939
IE核心就是html及jsp、php脚本的虚拟机,无需任何依赖即可执行
jsp、php等脚本编写的库(这些脚本中的函数会嵌在html文件下面的函数中)
这是JQUERY的内置函数,表示网页加载完毕后要执行的意思,和JAVASCRIPT原来的这个是一样的: window.onload=function(){ //执行函数} 相当于 $(document).ready(function(){ } ) 或者: 也是一个意思。
module("luci.controller.web.index", package.seeall)
function index()
local root = node()
if not root.target then
root.target = alias("web")
root.index = true
end
local page = node("web")//创建web节点
page.target = firstchild()//将web节点设置为第一个节点,在dispatch.lua中指定第一个页面为sysauth.htm(luci.template.render("web/sysauth", {duser=default, fuser=user}))
page.title = _("")
page.order = 10
page.sysauth = "admin"//登录默认用户名为admin
page.mediaurlbase = "/xxx/web"//图片及脚本所在目录
阅读(2106) | 评论(0) | 转发(0) |