svnno****@sourc*****
svnno****@sourc*****
2010年 12月 4日 (土) 21:14:04 JST
Revision: 2206 http://sourceforge.jp/projects/sie/svn/view?view=rev&revision=2206 Author: dhrname Date: 2010-12-04 21:14:04 +0900 (Sat, 04 Dec 2010) Log Message: ----------- EventのpreventDefalutメソッドを実装 Modified Paths: -------------- branches/06x/065/org/w3c/dom/events.js Modified: branches/06x/065/org/w3c/dom/events.js =================================================================== --- branches/06x/065/org/w3c/dom/events.js 2010-12-03 14:33:23 UTC (rev 2205) +++ branches/06x/065/org/w3c/dom/events.js 2010-12-04 12:14:04 UTC (rev 2206) @@ -237,6 +237,8 @@ }, /*void*/ preventDefault : function(){ this._default = false; + /*IEのみで使えるreturnValueプロパティ*/ + window.event.returnValue = false; }, /*void*/ initEvent : function( /*string*/ eventTypeArg, /*boolean*/ canBubbleArg, /*boolean*/ cancelableArg) { this.type = eventTypeArg;