Jquery UI Slider - 为值分配名称
我需要为 Jquery UI 滑块的值分配名称 - 这可能吗?
到目前为止的代码如下:
<script type="text/javascript">
$(function() {
$("#slider_style").slider({
value:2,
min: 1,
max: 3,
step: 1,
slide: function(event, ui) {
$("#style_type").val( ui.value );
}
});
$("#style_type").val( $("#slider_style").slider("value") );
});
</script>
基本上我想让 1 作为单词 PLAY 出现在 #slider_style
div 中,2 作为单词 HEAL,3 作为 RELAX - 谁能指出这是如何实现的?
I need to assign names to the values of a Jquery UI slider – is this possible?
Here's the code so far:
<script type="text/javascript">
$(function() {
$("#slider_style").slider({
value:2,
min: 1,
max: 3,
step: 1,
slide: function(event, ui) {
$("#style_type").val( ui.value );
}
});
$("#style_type").val( $("#slider_style").slider("value") );
});
</script>
Basically I want to make 1 appear in the #slider_style
div as the word PLAY, 2 as the word HEAL and 3 as RELAX – can anyone point out how this is achievable?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以只使用查找对象来获取值:
然后在您的
slide
函数中设置该对象的值:这将使
#style_type
获得 PLAY、HEAL 或RELAX 值取决于滑块。这是你的意思吗?You can just use a lookup object to get the values:
And then in your
slide
function set the value from that object:That will make the
#style_type
get PLAY, HEAL or RELAX as value depending on the slider. Is this what you meant?