如何将普通JS的以下行转换为jQuery 3.1.1版?

时间:2018-08-11 14:02:10

标签: jquery css

此plainJS行的jQuery 3.1.1版本是什么:

expandDiv.style.width = Math.min(Math.max(scrollAndSpeed, 20), 95) + "%";

1 个答案:

答案 0 :(得分:0)

这可以解决问题,需要添加自己的元素选择器

$('yourselectorhere').css({
    width: Math.min(Math.max(scrollAndSpeed, 20), 95) + "%"
});