svnno****@sourc*****
svnno****@sourc*****
2010年 2月 5日 (金) 21:32:13 JST
Revision: 1642 http://sourceforge.jp/projects/sie/svn/view?view=rev&revision=1642 Author: dhrname Date: 2010-02-05 21:32:13 +0900 (Fri, 05 Feb 2010) Log Message: ----------- Modified Paths: -------------- branches/ufltima/core.js Modified: branches/ufltima/core.js =================================================================== --- branches/ufltima/core.js 2010-02-05 12:29:12 UTC (rev 1641) +++ branches/ufltima/core.js 2010-02-05 12:32:13 UTC (rev 1642) @@ -946,7 +946,7 @@ *id属性の値で要素ノードを指定 */ /*Element*/ Document.prototype.getElementById = function( /*string*/ elementId) { - var s = (typeof(this._id[elementId]) == "undefined") ? null : this._id[elementId]; + var s = (typeof(this._id[elementId]) === "undefined") ? null : this._id[elementId]; return s; };