jquery 自定义事件怎样传递 this
$(function(){$(".Pitm").touchwipe({wipeLeft:function(){Showdel(/*这里怎样才能将this传递过去?*/);...
$(function(){
$(".Pitm").touchwipe({
wipeLeft:function(){ Showdel(/*这里怎样才能将this传递过去?*/);},
min_move_x: 20,
min_move_y: 20,
preventDefaultEvents: true
})
})
function Showdel (c){
c.hide();
}
其中 .Pitm 有多个,需要隐藏当前容器 展开
$(".Pitm").touchwipe({
wipeLeft:function(){ Showdel(/*这里怎样才能将this传递过去?*/);},
min_move_x: 20,
min_move_y: 20,
preventDefaultEvents: true
})
})
function Showdel (c){
c.hide();
}
其中 .Pitm 有多个,需要隐藏当前容器 展开
3个回答
推荐于2016-07-03
展开全部
$(function(){
var fun = function (dom) {
var obj = {
wipeLeft: function(){
Showdel(dom);
},
min_move_x: 20,
min_move_y: 20,
preventDefaultEvents: true
};
return obj;
};
$(".Pitm").touchwipe(fun ($(this)));
});
function Showdel (c){
c.hide();
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询