如何根据变量值设置width
以使其永远不会高于100%?
var progBarValue = $(this).find('.days-due').text();
$(this).find('.bar').width(progBarValue +"%");
我需要将width
值限制为最大值100%。
例如:如果progBarValue返回250%,width
仍然只是100%。
答案 0 :(得分:2)
我认为你必须自己修改变量,因为width属性可以是> 100%。
var progBarValue = $(this).find('.days-due').text();
progBarValue = progBarValue > 100 ? 100 : progBarValue;
$(this).find('.bar').width(progBarValue +"%");