在jQuery手機中通過AJAX從鏈接加載頁面時,直到刷新頁面纔會觸發對話框窗口。如果我嘗試將對話框添加到任何其他頁面,就會發生這種情況。如果我在鏈接到對話框頁面的頁面上添加data-ajax =「false」,則對話框工作得很好。我們希望使用jQuery移動功能和轉換,所以ajax false就不存在了。jQuery Mobile 1.3.0 - 通過AJAX在頁面加載時不打開對話框窗口
我們所有的標題信息在每個頁面上都是一樣的,所有對話框都被正確調用。
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Mobile Demos</title>
<link rel="stylesheet" href="css/jquery.mobile-1.3.0.css">
<script src="js/jquery.js"></script>
<script src="js/jquery.mobile-1.3.0.js"></script>
</head>
<div data-role="page" data-theme="a" id="dialogpage">
<a href="#foo2" data-rel="dialog" data-role="button" data-inline="true" data-theme="c">Open Basic Dialog</a>
</div>
<div data-role="dialog" id="foo2" data-close-btn="right">
<div data-role="header" data-theme="d">
<h1>lorum ipsum header</h1>
</div>
<div data-role="content">
<p>lorum ipsum</p>
<a href="#" data-rel="back" data-role="button" data-inline="true" data-theme="b">Ok, I get it</a>
</div>
</div>
</body>
</html>
可以,你提供javascript你試圖用對話框「觸發」? – chris 2013-04-04 18:38:33
這是jQuery Mobile,對話框是由框架創建的 – Andrew 2013-04-04 19:00:37