Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试修改 div 的宽度。我究竟做错了什么?
$('#foo') [<div class="bar" id="foo" style="width: 40%"></div>] $('#foo').css('style','width:50%') [<div class="bar" id="foo" style="width: 40%"></div>]
我认为应该是
$('#foo').css('width','50%')
实际上,您可以遵循以下两种方法之一。
或者
$('#foo').css({width:'50%'})
第二种方法用于同时更改多个属性。