我有一个jquery滑块,链接:http://ekallevig.com/jshowoff/
这是我的html代码:
<div id="features">
<div>1</div>
<div>2</div>
<div>3</div>
</div>滑块代码:
<script type="text/javascript">
$(document).ready(function(){
$('#features').jshowoff({
speed:3500,
changeSpeed:400,
links: false,
animatePause: true,
controls: true,
effect: 'slideLeft',
controlText:{play:'Play',pause:'Stop',previous:'Prev',next:'Next'},
hoverPause: true
});
});
</script>一切都是工作在我的滑块,除了数字链接!
如果我启用它:
links: true,我会得到未定义的代码!它应该是%1%2%3未定义
请看我的照片:
http://s7.postimage.org/buf1wehsr/sliders.jpg
如何修复数字链接?我希望你们能理解我,为我糟糕的英语道歉:
发布于 2012-06-19 20:38:12
<div id="features">
<div title="1">1</div>
<div title="2">2</div>
<div title="3">3</div>
</div>https://stackoverflow.com/questions/11100788
复制相似问题