我正在尝试制作像这样的范围小部件http://jqueryui.com/slider/#range。我已经复制了源代码,结果是文本输入而不是滑块。这是我正在使用的代码。此外,我将样式属性移动到链接的 css 文件中。这样做的输出从无变为文本输入。
这是我的头:
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="//code.jquery.com/ui/1.11.0/themes/smoothness/jquery-ui.css">
<script src="//code.jquery.com/jquery-1.10.2.js"></script>
<script src="//code.jquery.com/ui/1.11.0/jquery-ui.js"></script>
<script src="../jscript/questions.js"></script>
<script>
jQuery.noConflict()
$(function() {
$('#slider-range').slider({
range: true,
min: 25,
max: 500,
values: [ 75, 300 ],
slide: function( event, ui ) {
jQuery( "#amount" ).val( "$" + ui.values[ 0 ] + " - $" + ui.values[ 1 ] );
}
});
jQuery( "#amount" ).val( "$" + $( "#slider-range" ).slider( "values", 0 ) +
" - $" + jQuery( "#slider-range" ).slider( "values", 1 ) );
});
</script>
<link href='http://fonts.googleapis.com/css?family=Roboto:400,500,900,300' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="../CSS/questions.css">
</head>
这是小部件的 html:
<p>
<label for="amount">Price range:</label>
<input type="text" id="amount" >
</p>
<div id="slider-range"></div>
这是CSS:
#slider-range{
border:0;
color:#f6931f;
font-weight:bold;
}
谢谢!