Commit 1286686dffc8942971a193f045ef23ad07f212b1

Authored by ykxie
1 parent d55b2ad0

学生端录制课程

Showing 1 changed file with 33 additions and 0 deletions

Too many changes to show.

To preserve performance only 1 of 10 files are displayed.

example/aberver.html 0 → 100644
  1 +<!DOCTYPE html>
  2 +<html lang="en">
  3 +<head>
  4 + <meta charset="UTF-8">
  5 + <title>Document</title>
  6 +</head>
  7 +<body>
  8 +
  9 +<script src="jquery-2.0.3.js"></script>
  10 +<script>
  11 + (function(){
  12 + var o = $({}); // 转换为JQ对象
  13 + $.jianting = function(){
  14 + o.on.apply(o, arguments);
  15 + }
  16 + $.fabu = function(){
  17 + o.on.apply(o, arguments);
  18 + }
  19 + $.qingchu = function(){
  20 + o.on.apply(o, arguments);
  21 + }
  22 + $.jianting('/test/ls', function(e,a,b,c){
  23 + console.log(a + '||' + b + '||' + c +'||');
  24 + })
  25 + $.fabu('/test/ls', function(e,a,b,c){
  26 + console.log('OK');
  27 + })
  28 + })();
  29 +
  30 + $.fabu('/test/ls', [1,2,3]);
  31 +</script>
  32 +</body>
  33 +</html>
0 34 \ No newline at end of file
... ...