333

所属分类:WEB开发
开发工具:ASP
文件大小:91646KB
下载次数:5
上传日期:2018-01-23 15:11:23
上 传 者46uj4uh4
说明:  1、课程系统、名师管理、课程营销和功能配置栏目。其中包括的功能就有点播课程、直播课程和面授课程;课程的限时抢购、团购和积分兑换等。 2、订单模块,包括课程订单和查询管理等。课程订单中更是细分出了不同类型课程的订单,便于操作。 3、考试模块,考试管理数据管理,还有考试配置应有尽有。 4、应用模块,互动问答、微社区、留言、友情链接等都可以在应用模块中找到。 5、会员管理,可以进行会员的管理,还有财务管理、消息管理、签到管理等。
(1, curriculum system, master management, curriculum marketing and functional configuration column. Including the function have on-demand courses, live courses and face-to-face courses; course group purchase and redeem flash sale, etc.. 2, order module, including course order and query management. The order of different types of courses is subdivided into the order of the course order, which is easy to operate. 3, the test module, the test management data management, and the examination configuration should be full. 4, application module, interactive question and answer, micro community, message, friendship link and so on can be found in the application module. 5, member management, the management of members, as well as financial management, information management, sign to management and so on.)

文件列表:
install\DBStructure.sql (1965216, 2017-11-16)
install\fulldata.sql (16461960, 2017-10-10)
install\images\01.png (3527, 2013-03-20)
install\images\aero.png (6004, 2016-06-14)
install\images\baiyun.png (28161, 2013-03-20)
install\images\bg01.png (2912, 2013-03-20)
install\images\bg02.png (2911, 2013-03-20)
install\images\bk.jpg (572583, 2016-06-14)
install\images\bk2.jpg (654662, 2016-06-15)
install\images\body.png (16261, 2013-03-20)
install\images\body02.png (5655, 2013-03-20)
install\images\body03.png (611959, 2013-03-20)
install\images\box.gif (9235, 2013-03-20)
install\images\btn.png (4215, 2013-03-20)
install\images\btn02.png (4214, 2013-03-20)
install\images\download.png (15913, 2013-03-20)
install\images\guide.css (5101, 2016-06-15)
install\images\logo.png (8092, 2013-03-20)
install\images\no.gif (650, 2013-03-20)
install\images\v.png (368, 2016-06-14)
install\Index.aspx (19132, 2017-09-27)
install\license.txt (4170, 2017-09-25)
KS_Inc\adcss\ad.css (796, 2016-08-09)
KS_Inc\adcss\close.png (820, 2013-12-30)
KS_Inc\aliyun\aliyun-sdk.min.js (273910, 2017-03-29)
KS_Inc\aliyun\vod-sdk-upload-1.0.6.min.js (19206, 2017-03-29)
KS_Inc\baiduyun\3in1.js (12676, 2017-09-02)
KS_Inc\baiduyun\bce-bos-uploader.bundle.min.js (508557, 2017-09-01)
KS_Inc\baiduyun\bower_components\bce-bos-uploader\.bower.json (952, 2017-09-01)
KS_Inc\baiduyun\bower_components\bce-bos-uploader\bce-bos-uploader.bundle.js (3069794, 2017-09-01)
KS_Inc\baiduyun\bower_components\bce-bos-uploader\bce-bos-uploader.bundle.min.js (508557, 2017-09-01)
KS_Inc\baiduyun\bower_components\bce-bos-uploader\bower.json (656, 2017-09-01)
KS_Inc\baiduyun\bower_components\bce-bos-uploader\index.js (889, 2017-09-01)
KS_Inc\baiduyun\bower_components\bce-bos-uploader\package.json (998, 2017-09-01)
KS_Inc\baiduyun\bower_components\bce-bos-uploader\src\append_object_task.js (5445, 2017-09-01)
KS_Inc\baiduyun\bower_components\bce-bos-uploader\src\config.js (3703, 2017-09-01)
KS_Inc\baiduyun\bower_components\bce-bos-uploader\src\events.js (1454, 2017-09-01)
KS_Inc\baiduyun\bower_components\bce-bos-uploader\src\multipart_task.js (11402, 2017-09-01)
KS_Inc\baiduyun\bower_components\bce-bos-uploader\src\network_info.js (1516, 2017-09-01)
... ...

# jQuery > jQuery is a fast, small, and feature-rich JavaScript library. For information on how to get started and how to use jQuery, please see [jQuery's documentation](http://api.jquery.com/). For source files and issues, please visit the [jQuery repo](https://github.com/jquery/jquery). ## Including jQuery Below are some of the most common ways to include jQuery. ### Browser #### Script tag ```html ``` #### Babel [Babel](http://babeljs.io/) is a next generation JavaScript compiler. One of the features is the ability to use ES6/ES2015 modules now, even though browsers do not yet support this feature natively. ```js import $ from "jquery"; ``` #### Browserify/Webpack There are several ways to use [Browserify](http://browserify.org/) and [Webpack](https://webpack.github.io/). For more information on using these tools, please refer to the corresponding project's documention. In the script, including jQuery will usually look like this... ```js var $ = require("jquery"); ``` #### AMD (Asynchronous Module Definition) AMD is a module format built for the browser. For more information, we recommend [require.js' documentation](http://requirejs.org/docs/whyamd.html). ```js define(["jquery"], function($) { }); ``` ### Node To include jQuery in [Node](nodejs.org), first install with npm. ```sh npm install jquery ``` For jQuery to work in Node, a window with a document is required. Since no such window exists natively in Node, one can be mocked by tools such as [jsdom](https://github.com/tmpvar/jsdom). This can be useful for testing purposes. ```js require("jsdom").env("", function(err, window) { if (err) { console.error(err); return; } var $ = require("jquery")(window); }); ```

近期下载者

相关文件


收藏者