2

我正在尝试在 Android 本机应用程序上的 jquery mobile 1.3.2 中使用以下代码加载复选框时显示加载微调器,但它不起作用,任何人都可以帮助我解决问题以及如何使其工作

这是我的代码:

function onChangeCarrera(idCarrera,idEvento){

    $.mobile.loading('show', {
        text: 'Cargando Corredores',
        textVisible: true,
        theme: 'a',
        html: ""});

    cargaCorredores(idCarrera,idEvento);

    resetMontoTotal();

    $.mobile.loading('hide');
}

function cargaCorredores(idCarrera,idEvento){
    var dom = jsel(json);

    var carrera = dom.select('//Eventos/*[@id='+idEvento+']/carreras/*[@nroCarrera='+idCarrera+']');

    //Muestra Label
    $("#lblCorredores").text("Selección de corredores");

    var html;

    for (var x=1; x<=TipoApuesta.patas; x++){
        html='<fieldset id="carrera"+x+"_fieldset" data-type="horizontal" data-role="controlgroup"><legend>'+eval("TipoApuesta.p"+x+"Nombre")+'</legend>';
        $.each(carrera.corredores, function(i, corredor) {
            html+='<input type="checkbox" onclick="resetMontoTotal();" value="'+corredor.nroCorredor+'" name="checkbox_'+idCarrera+'_'+idEvento+'_'+corredor.nroCorredor+'"  id="checkbox_'+idCarrera+'_'+idEvento+'_'+corredor.nroCorredor+'" class="corredores'+x+'" /><label for="checkbox_'+idCarrera+'_'+idEvento+'_'+corredor.nroCorredor+'">'+corredor.nroCorredor+'</label>';
        });
        $("#carreras"+x).html(html+'</fieldset');
        $("#carreras"+x).trigger("create");
    }

    if (TipoApuesta.patas<4){
        for (var j=4; j>TipoApuesta.patas; j--){
            $("#carreras"+j).html('');
            $("#carreras"+j).trigger("create");
        }
    }

}

我正在使用页面预加载的 json 来制作复选框。非常感谢!

4

1 回答 1

0

我在某处读到需要使用区间变量。我有同样的问题,这解决了它,虽然它对我来说有点“hacky”。

    var interval = setInterval(function () {
        $.mobile.loading('show', {
            text: 'Resuming...',
            textVisible: true,
            theme: 'a',
            html: ""
        });
        clearInterval(interval);
    }, 1);

我必须在我的每个应用程序页面上为间隔使用不同的变量名称。

于 2013-11-15T18:33:27.157 回答