0

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> 

誰かが私が間違っていることを知っていますか?ありがとう

4

1 に答える 1

7

JQM 1.1.0 リリースでは、ポップアップに関する機能が壊れています。git バージョンを試すことができます (これは推奨されません)。

http://code.jquery.com/mobile/latest/jquery.mobile.min.js http://code.jquery.com/mobile/latest/jquery.mobile.min.css

于 2012-05-21T08:04:33.313 に答える