0

请看看这个小提琴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);

TIA,

丹尼尔

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 回答