我正在嘗試使用Jquery-Joyride - http://www.zurb.com/playground/jquery-joyride-feature-tour-plugin,但我無法使用它與Jquery Mobile一起工作。只要添加標準JQM標籤,幫助窗口將不再顯示。Jquery Joyride - 不能用Jquery Mobile
這裏是我嘗試: .....
<ol id="joyRideTipContent">
<li data-id="numero2" data-text="Next" class="custom">
<h2>Stop #1</h2>
<p>You can control all the details for you tour stop. Any valid HTML will work inside of Joyride.</p>
</li>
....
<script>
$(window).load(function() {
$('#joyRideTipContent').joyride({postStepCallback : function (index, tip){
if (index == 2) {
$(this).joyride('set_li', false, 1);
}
}});
});
</script>
.....
<div class="row">
<div class="four columns">
<img src="280x120.gif"></img>
</div>
<div class="eight columns">
<h3 id="numero2">Customize Each Stop Along the Way</h3>
<p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. </p>
</div>
</div>
.. ...
一切工作正常上面的代碼。但是,只要我添加JQM特定標記,就不會再出現幫助窗口。
<div data-role="page" class="type-home" data-dom-cache="false" id="home">
我不知道如何得到這個工作。任何幫助表示讚賞。這裏
文檔就緒或窗口加載不能用於在jQuery Mobile頁面內初始化jQuery插件,您應該在您的案例中使用適當的jQuery Mobile頁面事件。閱讀更多關於它在這裏:http://stackoverflow.com/a/14469041/1848600 – Gajotres 2013-03-15 18:18:00