我想從li標籤中刪除樣式屬性。如何從li標籤中刪除樣式屬性通過jquery嵌套在兩個div中
<div class="hello mr person">
<div class="garage">
<ul class="stuff">
<li style="width: 148px;"></li>
<li style="width: 148px;"></li>
<li style="width: 148px;"></li>
<li style="width: 148px;"></li>
</ul>
</div>
</div>
由於某種原因,以下將無法正常工作,我知道我很接近,但我沒有看到我做錯了什麼。
<script type="text/javascript">
$(document).ready(function() {
$(".hello.mr.person").find(".garage").find(".stuff li style").remove();
});
</script>
你忘了關貴麗標籤。 – j08691