Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我只需要从滑块上的 ui.value 中获取倒数第二个数字。
这是我如何获得最后一位数字:
var $lastNumber = ui.value % 10;
这是我正在使用的实际代码:
activeBackground_2 = 'url(images/numbers/20'+ui.value % 10+'.png)';
我将如何仅从最后一位获得第二位?不是第二个数字之后的所有内容,而只是那个特定数字。
也许:
var $lastNumber = parseInt((ui.value / 10), 10) % 10;