1.0.0 • Published 7 years ago

ywpoint v1.0.0

Weekly downloads
8
License
-
Repository
github
Last release
7 years ago

#路由

###轻量级的ajax路由

####注册路由 point.reg('a', function() { console.log("1")

	}).reg('b', function(o) { //o可以是参数
		console.log(o)
			
	}).reg(['c', 'd'], function() { 
		console.log("3")
	}).reg('e', function() {
		console.log("4")
	});

###主动调用路由 point.go('b/hello');