我有一个由jQuery touchSwipe插件处理的链接块。当我从移动设备点击一个链接时,它会跟随存储在" href"的网址。属性。我使用插件选项"点击"。基本上它可以工作,例如使用alert()。但是如何获得按钮点击的默认行为,只需按照网址。
container.swipe({
click: function(event, target) {
$(target).click(); //nothing happen
},
threshold: 75,
excludedElements: "button, input, select, textarea, .noSwipe",
});