simple.js

来自「java 写的一个新闻发布系统」· JavaScript 代码 · 共 11 行

JS
11
字号
/*   DynAPI Distribution   Simple event classes.    The DynAPI Distribution is distributed under the terms of the GNU LGPL license.*/ DynObject.prototype.invokeEvent = function(type,e,args) {	var ret = true;	if(this["on"+type]) ret = this["on"+type](e,args)	if(ret && this.parent) this.parent.invokeEvent(type,e,args);}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?