这是一个显示问题的小提琴。
滑动在红色框上正常工作,但在按下新按钮后创建的新蓝框上没有。 (用鼠标滑过红框以便更改)
很抱歉,如果这是一个骗局,但我没有在网上找到解决我的特定问题的任何解决方案。
代码来自touchSwipe网站
javascript
$(function() {
//Enable swiping...
$(".test").swipe( {
//Generic swipe handler for all directions
swipe:function(event, direction, distance, duration, fingerCount) {
$(this).text("You swiped " + direction );
},
//Default is 75px, set to 0 for demo so any distance triggers swipe
threshold:0
});
});
$(document).on('click','button',function(){
$('<div class="test" id="test2">Swipe me</div>').appendTo('body');
});
HTML
<div class="test">Swipe me</div>
<button>New</button>
答案 0 :(得分:10)