sql建表语句详见:https://www.jianshu.com/p/c88077ed9073

1.新建html模板
新建一个空白的txt文档,然后把后缀名改为.html
【php增删改查实例】第六节 - 部门管理模块(开始)
用任意一个编辑器打开,比如sublime,dreamweaver。
【php增删改查实例】第六节 - 部门管理模块(开始)
然后,在里面写上html的基本结构。

<html>

	<head>
		<meta charset="utf-8">

	</head>

	<body>
		中文	

	</body>

</html>

2.引入easyui的资源文件

引入之前,先把这个easyui的资源包拷贝到01.html的同级目录:
【php增删改查实例】第六节 - 部门管理模块(开始)

接着,在01.html的head标签,加上以下的资源导入语句。

<script type="text/javascript" src="jquery-easyui-1.3.3/jquery.min.js"></script>
        <link rel="stylesheet" type="text/css" href="jquery-easyui-1.3.3/themes/default/easyui.css">
        <link rel="stylesheet" type="text/css" href="jquery-easyui-1.3.3/themes/icon.css">
        <script type="text/javascript" src="jquery-easyui-1.3.3/jquery.easyui.min.js"></script>
        <script type="text/javascript" src="jquery-easyui-1.3.3/locale/easyui-lang-zh_CN.js"></script>
        <script type="text/javascript" src="jquery-easyui-1.3.3/validate.js"></script>

【php增删改查实例】第六节 - 部门管理模块(开始)
去刷新以下页面,看看是否资源导入成功。方法为浏览器按一下F12,打开调试界面。
【php增删改查实例】第六节 - 部门管理模块(开始)
选择Network。
【php增删改查实例】第六节 - 部门管理模块(开始)

【php增删改查实例】第六节 - 部门管理模块(开始)

下载地址:https://pan.baidu.com/s/1OXvqQwAmz7usgD4KqiUXLw

相关文章: