Descrição
O controle deslizante pode ser criado em tempo de execução usando a função JavaScript .
Exemplo
O exemplo a seguir demonstra o uso do controle deslizante injetado dinamicamente no jQuery Mobile.
<!DOCTYPE html>
<html>
<head>
<title>Dynamically injected</title>
<meta name = "viewport" content = "width = device-width, initial-scale = 1">
<link rel = "stylesheet" href = "https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css">
<script src = "https://code.jquery.com/jquery-1.11.3.min.js"></script>
<script src = "https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
</head>
<body>
<form id = "dynamic-slider-form">
</form>
<script>
$( document ).on( "pagecreate", function() {
$( "<input type = 'number' data-type = 'range' min = '0' max = '100' step = '1' value = '70'>" )
.appendTo( "#dynamic-slider-form" )
.slider()
.textinput()
});
</script>
</body>
</html>
Resultado
Vamos realizar as seguintes etapas para ver como funciona o código acima -