动态插入JQuery Mobile滑块

时间:2013-03-29 17:28:55

标签: javascript jquery-mobile jquery jquery-mobile-slider

我正在动态插入滑块。问题是,当我动态插入它们时,它们没有jquerymobile的主题。 这是我使用的代码:

for (var i = array_colors_available.length - 1; i >= 0; i--) {
        $('#insert_colors_slider').append('<div data-role="fieldcontain" ><fieldset data-role="controlgroup"> <label for="slider-8">'+array_colors_available[i]+' : '+'</label><input id=slider-'+i+' type="range" name='+array_colors_available[i]+' value="0" min="0" max="25" data-highlight="true" data-theme=c data-track-theme="f"></fieldset></div>');
        if(array_slider_info_value != null) $('#slider-'+i).val(array_slider_info_value[i+1].value);
    };

enter image description here

如果我使用JQueryMobile的方法,那么屏幕上会出现两个滑块:

for (var i = array_colors_available.length - 1; i >= 0; i--) {
        $('#insert_colors_slider').append('<div data-role="fieldcontain" ><fieldset data-role="controlgroup"> <label for="slider-8">'+array_colors_available[i]+' : '+'</label><input id=slider-'+i+' type="range" name='+array_colors_available[i]+' value="0" min="0" max="25" data-highlight="true" data-theme=c data-track-theme="f"></fieldset></div>');
        $('#slider-'+i).slider();
        if(array_slider_info_value != null) $('#slider-'+i).val(array_slider_info_value[i+1].value);
    };

enter image description here

我做错了什么?当我不使用这些方法时,没有主题,当我使用它时,我有两个滑块而不是一个... 谢谢!

1 个答案:

答案 0 :(得分:6)

这只是jQuery Mobile的一个错误。你的代码中也有错误,标签必须指向正确的滑块,而在你的例子中则不是这样。

可以通过两种方式创建动态滑块,其中没有一种包含 slider() 方法:

示例1

pagebeforecreate pagecreate 事件期间执行此操作。

工作示例:http://jsfiddle.net/Gajotres/caCsf/

$(document).on('pagebeforeshow', '#index', function(){    
    // Add a new input element
    $('[data-role="content"]').append('<input type="range" name="slider-2" id="slider-2" value="25" min="0" max="100"  />');
});

示例2

pagebeforeshow pageshow 事件期间执行此操作,并使用 trigger('create') 设置滑块样式

工作示例:http://jsfiddle.net/Gajotres/NwMLP/

$(document).on('pagebeforeshow', '#index', function(){    
    // Add a new input element
    $('[data-role="content"]').append('<div data-role="fieldcontain"></div>');
    $('[data-role="fieldcontain"]').append('<fieldset data-role="controlgroup"></fieldset>');
    $('[data-role="controlgroup"]').append('<label for="slider-2">Slider 2</label>');
    $('[data-role="controlgroup"]').append('<input type="range" name="slider-2" id="slider-2" value="25" min="0" max="100"  />');
    // Enhance new input element, unfortunately slider() function is not goinf to work correctly
    //$('[type="range"]').slider();
    $('#index').trigger('create');
});

在此示例中,如果我们尝试使用 slider() ,除了输入框之外,只有一切都是样式。

有关此内容的更多信息以及其他一些相关内容可以在我的其他 ARTICLE 中找到,或者找到 HERE