events: {
"click .cpm-title a.col-xs-6": "collect",
"click .js-buy": "buy"
},
initialize: function (attrs) {
this.model = new Model();
this.model.fetch();
this.model.on("sync", this.render,this);
},
buy:function(){
$("body").css('backgroundColor','red');
alert(11)
}
立即购买
加入购物车 //一开始使用a标签无效,span也无效
在PC端click是可以触发的,在手机上却无法点击(不要说缓存)
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
手机是iOS吗?可以用 fastclick https://github.com/ftlabs/fastclick
能把相关的所有源码贴下么,包括你 View 的
el不然问题不好判断