2013-03-31 81 views
0

事件,我在我的項目中使用流星,我有以下click事件:點擊Chrome瀏覽器(iPad版)

Template.Products.events = { 
    "click .Product" : function() { 
     if(this.InStock) { 
     var item = Cart.findOne({Name : this.Name, Price : this.Price}); 
     if(item) { 
       Cart.update(item._id, { $inc : {Quantity : 1} }); 
     } else { 
       Cart.insert({ Name : this.Name, Price : this.Price, Quantity : 1 }); 
     } 
     } else { 
     alert("That item is not in stock"); 
     } 
    } 
    }; 

然而,它並沒有在Chrome瀏覽器(iPad版)的工作。

回答

0

您應該使用touchstart事件而不是click事件。

相關問題