我已经建立了这个小提琴,但是当文本框 val 为 50 时,汽车没有出现。这是为什么呢?
var interval;
interval = setInterval(function () {
var chosenvalue = $(".amount1").val()
$(".box ul li").hide();
$(".box ul li:nth-child(" + chosenvalue + ")").show();
}, 100);