typeof document.getElementById('foo').bar('value') //returns "number"
我想改变“价值”。
console.log(document.getElementById('foo').bar('value')) // 10
我不能只是一个数字的值,它会正确地抛出一个错误:
document.getElementById('foo').bar('value')) = 12 // ReferenceError: Invalid left-hand side in assignment
10 = 12 // ReferenceError: Invalid left-hand side in assignment
你将如何设置 bar 的值?
这个特定的实例是由 jquery 提供的滑块,所以实际的代码(我试图改变它的值看起来像这样:
$('#slider').slider.val(function (index, value) {
return value + '' + deltaY + '%'})
但是我返回了一个很长的错误,粘贴在这里:https ://gist.github.com/2e65bbf1578f7ea27bb0
“...}没有方法'val'”