我有一个 div 有两个类:
<div class="content pager" style="width: 1156px; float: left; list-style: none outside none;"></div>
我想用 jQuery 改变元素样式:
$(".content pager").width(0); //Change the element style width
但它不起作用。它有什么问题?
试试这个:
$(".content.pager").width(0);
width(0)
不会隐藏其内容。你需要hide
它。而不是width(0)
. 所以,你可以试试这个:
$(".content.pager").hide(0); // Will hide the div and free its space.
$(".content.pager").css('visibility', 'hidden'); // Will hide the div and take space belongs to it.