jQuerymobileに問題があります。
サインインボタンがあります。クリックするとログインフォームがポップアップ表示されますが、ページが読み込まれるとポップアップdivが非表示になりません...
(jQueryモバイル属性をいくつか追加して)非表示にする方法を何百も試しましたが、何も機能しませんでした。
コード:
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.css" />
<script src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.js"></script>
<a href="#popupLogin" data-rel="popup" data-role="button" data-transition="pop" data-inline="true">Sign in</a>
<div data-role="popup" id="popupLogin" data-theme="a" data-overlay-theme="b" >
<h3>Please sign in</h3>
<label for="un">Username:</label>
<input id="un" type="text" data-theme="a" placeholder="username" value="" name="user" />
<label for="pw">Password:</label>
<input id="pw" type="password" data-theme="a" placeholder="password" value="" name="pw">
<div data-theme="b" aria-disabled="false">
</div>
誰かが私が間違っていることを知っていますか?ありがとう