嘗試在待機功能封裝腳本:
$(document).ready(function() {
//your script here
});
還有一個拼寫錯誤腳本標籤的文本屬性爲文本/ javacsript。 如果您僅爲鏈接使用href屬性,導航功能也應該有效。 對於jQuery的移動,一些特定的事件可用:pageinit,pagecreate,pageshow。
更新:你的點擊處理程序應該在jQuery的準備處理程序被添加:
<script type="text/javascript">
$(document).ready(function() {
$('#prevchild').click(function() {
$.mobile.changePage($('#home'), {
transition: 'slide',
reverse: true
});
});
$('#nextchild').click(function() {
$.mobile.changePage($('#child'), {
transition: 'slide',
reverse: true
});
});
$('#login').click(function() {
$.mobile.changePage($('#child'), {
transition: 'slide',
reverse: true
});
});
$('#back').click(function() {
$.mobile.changePage($('#home'), {
transition: 'slide',
reverse: true
});
});
$('#next').click(function() {
$.mobile.changePage($('#child'), {
transition: 'slide',
reverse: true
});
});
$('#prev').click(function() {
$.mobile.changePage($('#home'), {
transition: 'slide',
reverse: true
});
});
});
</script>
我曾嘗試在Chrome的代碼,並將其與該小的變化工作。
哎呀索裏,但我糾正我的代碼仍然有同樣的問題 – unkown 2012-04-25 05:15:56