我需要使用 jQuery 更改 div 的宽度。
当我使用以下内容时,它可以工作:
$('#footer').css('width', '100%');
$('#footer').css('width', '-=239');
当我使用它时,它可以工作:
$('#footer').css('width', '100%');
$('#footer').css('width', '-=239px');
但是当我使用它时,它什么也没做:
$('#footer').css('width', '100%');
$('#footer').css('width', '-=21em');
有没有办法让 jQuery 工作em
?或者例如计算em
并px
设置一个变量并减去该值?
编辑:感谢大家纠正我的拼写和代码!