-1

我正在使用热毛巾模板 SPA 中提供的 Durandal。这个想法是为基于触摸的设备提供一个 SPA 应用程序,我需要在 div 上的一些上实现滑动功能。

jquery mobile 支持滑动功能,但有人可以告诉我如何使用它。div 上有一个数据绑定,我在其中给出了“滑动:某些功能” - 这不会发生,而当我使用点击而不是滑动时同样有效。在视图模型中定义了一些功能。

我已将 jquery mobile 包含在脚本和捆绑包中。

如果可能的话,有人可以帮助我吗?

4

1 回答 1

0

这是一个工作示例:http: //jsfiddle.net/Gajotres/pf3kc/

HTML:

<!DOCTYPE html>
<html>
<head>
  <title>Share QR</title>
  <meta name="viewport" content="width=device-width,height=device-height,minimum-scale=1,maximum-scale=1"/>
  <link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />   
  <script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
</head>

<body>
  <div data-role="page" id="article1">
    <div data-role="header" data-theme="b" data-position="fixed" data-id="footer">
      <h1>Articles</h1>
    </div>
    <div data-role="content">
      <p>Article 1</p>
    </div>
    <div data-role="footer" data-theme="b" data-position="fixed" data-id="footer">
      <h1>Footer</h1>    
    </div>
  </div>    
</body>
</html>

Javascript:

$(document).off('swipeleft').on('swipeleft', '[data-role="page"]', function(event){    
    alert('swipeleft');      
});

$(document).off('swiperight').on('swiperight', '[data-role="page"]', function(event){   
    alert('swiperight');           
});
于 2013-04-02T11:31:03.023 回答