Chinaunix首页 | 论坛 | 博客
  • 博客访问: 3115043
  • 博文数量: 685
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 5303
  • 用 户 组: 普通用户
  • 注册时间: 2014-04-19 14:17
个人简介

文章分类

全部博文(685)

文章存档

2015年(116)

2014年(569)

分类: Web开发

2014-10-27 18:16:18

原文地址: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) |
给主人留下些什么吧!~~