本文介绍了为什么jquery ui滑块返回一个对象?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
当我这样做时
console.log($('#my_slider').slider('value'))
它返回 [object Object]
有谁知道为什么它不会返回滑块的实际值,就像它在文档中所说的那样?
it returns [object Object]
Does anyone know why it doesn't return the actual value of the slider like it says it is supposed to in the documentation?
推荐答案
你应该使用()
console.log($('#my_slider').slider( "option", "value" ))
这篇关于为什么jquery ui滑块返回一个对象?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!