0

イベント処理用の Javascript ライブラリに取り組んでいます。コードの一部を次に示します。

01| (function(){
02|     var int,
03|         Jist = function(s){
04|             return new Jist.fn.init(s);
05|         };
06|     Jist.fn = Jist.prototype ={
07|         init : function(s){
08|             if(!s){
09|                 return this;
10|             }
11|             else{
12|                 this.length = 1;
13|                 if (typeof s === "object"){
14|                     this[0] = s;
15|                 }
16|                 else if(typeof s === "string"){
17|                     var obj;
18|                     obj = document.querySelectorAll(s);
19|                     this[0] = obj;
20|                     this.elem = this[0];
21|                 }
22|                 return this;
23|             }
24|         },
25|     };
26|     Jist.fx ={
27|         event : function(event,callback,state){
28|             var dummy = (state) ? false : state; 
29|             for(var i=0; i<this.elem.length; i++) {
30|                 this.elem[i].addEventListener(event,callback,dummy);
31|             }
32|             return this;
33|             },
34|     }
35|     Jist.fn.init.prototype = Jist.fn;
36|     Jist.fn.init.prototype = {
37|         print : function(txt){
38|             for(var i=0; i<this.elem.length; i++) {
39|                 this.elem[i].innerHTML = txt;
40|             }
41|             return this;
42|         },
43|         click : function(callback){
44|             Jist.fx.event("click",callback);
45|             return this;
46|         },
47|     };
48|     window.Jist = window._ = Jist;
49| })();

そして、私のWebページで、これをテストする必要があります:

01| <div id="enter">Begin!</div>
02| <script>
03|    _("#enter").click(function(){
04|       _("#enter").print("It worked!");
05|    })
06| </script>

これは機能するはずですが、代わりに次のようなエラーが表示されます。

'undefined' はオブジェクトではありません (this.elem.length を評価します) [ライブラリの 29 行目]

これを修正する方法を知っている人はいますか?

助けていただければ幸いです。

4

3 に答える 3

0

を呼び出しJist.fx.event("click",callback);て実行を開始すると、eventメソッドthisは になり、参照時にメソッドが使用しようとしているというJist.fx名前のプロパティはありません。これにより、表示されるエラーが発生します。elemeventthis.elem.length

于 2013-11-07T03:30:51.233 に答える
0

this.elemは関数のスコープ外であるため、未定義のエラーが返されるため、代わりにthis.elem.length使用jist.elem.lenghしてチェックします

于 2013-11-07T03:31:33.173 に答える
0

The problem is in the event method this does not refer to the object set you want, you can fix it using a Function.call()

You need to change the call to event registration method like

Jist.fx.event.call(this, "click", callback);

Also you need to make sure that the event registration code is called after the dom is loaded with the target element

Demo: Fiddle

于 2013-11-07T03:33:40.903 に答える