0

通知ダイアログで、パラメータダイアログボックスの種類で指定したいです。しかし、テーマは結局管理されていないため、入力などは私のjavascript関数のcssを使用したテーマではありません。

HTML :

   <div id="notification" data-role="page" >

    <div data-role="header" data-theme="c">
        <h1></h1>
    </div>
    <div data-role="content" data-theme="c">
        </div>

</div>

ジャバスクリプト:

function notification(title, text, notification_transition){
    $.mobile.changePage( "#notification", {
            transition: notification_transition,
            role: "dialog"
    } );


    $("#notification h1").html(title);
    $("#notification p.message").html(text);

    $("#notification div[data-role=content]").html('<p class="message"></p>'+
        '<p>Identifiant</p>'+
        '<input type="text" value="" data-theme="a">');


    try
    {
      navigator.notification.vibrate(500);
    }
    catch(error) {}
}

$("#notification div[data-role=content]").html(); の後に jaquery モバイルテーマを再起動する方法 前もってありがとうメトス

4

1 に答える 1

0

以下を試すことができます: http://forum.jquery.com/topic/how-to-refresh-the-theme-of-a-button

于 2012-07-09T14:28:52.160 に答える