我打電話接近每http://jquerymobile.com/test/docs/pages/popup/index.html,但什麼也沒發生(很明顯,我希望它不會在這種情況下顯示在所有):在jQuery Mobile中,爲什麼不彈出關閉?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html>
<head>
<title>popup</title>
<meta name="viewport" content="width=device-width, initial-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/jquery-1.8.2.min.js"></script>
<script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
<meta http-equiv="Content-Type" content="text/html; charset= ISO-8859-5">
<script>
$(document).ready(function() {
$("#popupBasic").popup();
$("#popupBasic").popup("open");
$("#popupBasic").popup("close");
});
</script>
</head>
<body>
<div data-role="page">
<div data-role="popup" id="popupBasic">
<p>This is a completely basic popup, no options set.</p>
</div>
</div>
</body>
</html>
這會在Chrome中產生奇怪的行爲 - 當彈出窗口關閉時,它也會進入空白頁面。在Safari中,它似乎根本不起作用。 – fakeguybrushthreepwood
讓它現在工作,看到更新... – Taifun
對不起,延遲,仍然觀察在這個奇怪的行爲。當彈出窗口關閉時,它會進入空白頁面。 – fakeguybrushthreepwood