我有兩個data-role="page"
divs,「content」和「links」。 內容是默認的頁面,以顯示鏈接按鈕:jQuery Mobile - 當禁用AJAX時轉換失敗
<a data-role="button" href="#links" data-transition="slide">More</a>
如果$.mobile.ajaxLinksEnable = false
那麼下面被打破:
- 它不會鏈接到書籤在同一頁上。即它從example.com/randompage.html鏈接到example.com/#links
- 如果我將
data-ajax="true"
添加到錨點,則轉換(幻燈片)失敗,甚至。
HTML:
<!DOCTYPE html>
<html>
<head>
<title>Example for SO</title>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0a4.1/jquery.mobile-1.0a4.1.min.css" />
<script src="http://code.jquery.com/jquery-1.5.2.min.js"></script>
<script src="http://code.jquery.com/mobile/1.0a4.1/jquery.mobile-1.0a4.1.min.js"></script>
<script>
$.mobile.ajaxLinksEnabled = false;
</script>
</head>
<body>
<div data-role="page" id="content">
<a data-role="button" href="#links" data-ajax="true" data-transition="slide">More</a>
Text here
</div>
<div data-role="page" id="links">
<a data-role="button" href="" data-rel="back">Back</a>
<div>A bunch of extra links here</div>
</div>
</body>
</html>
附: 我意識到這可能是一個圖書館的錯誤,而不是我的錯。
編輯:實時示例鏈接已被刪除。
AJAX調用是否正常工作/響應? –
我不確定你在問什麼。 「#鏈接」不是一個Ajax加載頁面,它是在同一頁上的div – Mikhail
你能編輯你的問題併發布基本頁面佈局嗎? –