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,我如何选择这个 div 的 html
<div class="FL MBL" style="width:430px;"> </div>
我如何通过jquery选择html
如果要检查样式属性值以及类属性
width:430px;如果样式属性的值如下
width:430px;
$('.FL.MBL[style="width:430px;"]')
演示:小提琴
别的
$('.FL.MBL').filter(function(){ return this.style.width == '430px' })
如果要选择“样式”属性,可以使用
var width = $('.FL MBL').css('width');
如果要更改样式属性
$('.FL MBL').css('width','100px');