0

この Fiddle http://jsfiddle.net/GkfY7/をご覧ください。

スタイリング(およびテキスト)がおそらくdivに更新されていない理由を誰かが私に説明してもらえますか?

問題はリフレッシュにあると思いますか?

    $('#survey [data-role="fieldcontain"]').fieldcontain();
    $('#survey [data-role="fieldcontain"]').fieldcontain('refresh',true);
    $('#survey [data-role="controlgroup"]').controlgroup();
    $('#survey [data-role="controlgroup"]').controlgroup('refresh',true);
    $('#survey').selectmenu();
    $('#survey').selectmenu('refresh',true);

ティア、

ダニエル

4

1 に答える 1

1
        Try Changing the last part of your code to:

        $('#survey').append(output.join(''));
        $('#survey [data-role="fieldcontain"]').fieldcontain();
        $('#survey [data-role="fieldcontain"]').fieldcontain('refresh',true);
        $('#survey [data-role="controlgroup"]').controlgroup();
        $('#survey [data-role="controlgroup"]').controlgroup('refresh',true);
        $('#sc1, #sc3').selectmenu();
        $('#sc1, #sc3').selectmenu('refresh',true);
于 2013-01-08T11:27:17.047 に答える