我有一张这样的幻灯片:
$(function () {
/*--------------------------------------------------
Plugin: Slider
--------------------------------------------------*/
/* Increment Slider */
$( "#incrementSlider" ).slider({
range: "min",
value:1993,
min: 1914,
max: 2013,
step: 1,
slide: function( event, ui ) {
$( "#incrementAmount" ).text ("Birthday: " + ui.value);
}
});
$( "#incrementAmount" ).text ( "Birthday: " + $( "#incrementSlider" ).slider( "value" ));
});
如果用户现在在滑块上选择我想显示一些信息的生日。
例如用户取 1980:
Infotext 1 belong to 1980,
Infotext 2 belong to 1980,
Birthday belong to 1980,
Infotext 3 belong to 1980,
Infotext 4 belong to 1980
我需要它,以便我可以在文本中免费使用它,但是如果用户更改滑块中的生日,它当然必须自动更改。
不一定,如果有任何其他方式,我不喜欢使用 mysql 的解决方案。