如何拆分选定的值,将数字与 jQuery 中的文本分开?
例子:
myselect
包含c4
只得到号码4
。
$('select#myselect').selectToUISlider({
sliderOptions: {
stop: function(e,ui) {
var currentValue = $('#myselect').val();
alert(currentValue);
var val = currentValue.split('--)
alert(val);
}
}
});