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>

JAVASCRIPT:

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 移动主题 提前感谢 Metos

4

1 回答 1

0

您可以尝试以下方法:http: //forum.jquery.com/topic/how-to-refresh-the-theme-of-a-button

于 2012-07-09T14:28:52.160 回答