我想修改股票 JQuery UI 滑块,使手柄上有一个箭头,而不是一个正方形。即我想使用自定义图像作为句柄。
有一些教程可以做到这一点:
- http://jqueryfordesigners.com/slider-gallery/
- http://www.ryancoughlin.com/2008/11/04/using-the-jquery-ui-slider/
- http://www.keepthewebweird.com/creating-a-nice-slider-with-jquery-ui/
但我无法让它工作。以下代码生成静止的句柄图像:
<!DOCTYPE html>
<html>
<head>
<link type="text/css" href="http://jqueryui.com/latest/themes/base/ui.all.css" rel="stylesheet" />
<script type="text/javascript" src="http://jqueryui.com/latest/jquery-1.3.2.js"></script>
<script type="text/javascript" src="http://jqueryui.com/latest/ui/ui.core.js"></script>
<script type="text/javascript" src="http://jqueryui.com/latest/ui/ui.slider.js"></script>
<style type="text/css">
#myhandle {position: absolute;z-index: 100;height: 25px;width: 35px;top: auto;background: url(http://stackoverflow.com/content/img/so/vote-arrow-down.png) no-repeat;}
</style>
<script type="text/javascript">
$(document).ready(function(){
$("#slider").slider({handle: '#myhandle'});
});
</script>
</head>
<body>
<div id="slider"><div id="myhandle"></div></div>
</body>
</html>
就好像 JQuery 没有接收到我想使用myhandle id 作为句柄一样。我想知道:我需要一个 JQuery 插件来识别句柄选项吗?(它没有记录在http://docs.jquery.com/UI/Slider中)。或者它只适用于旧版本的 JQuery?
有任何想法吗?