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.
我有一个左右边距自动的容器。我想要做的是以某种方式获取 this 的值并将其应用于另一个元素。因此,无论浏览器尺寸如何,自动边距都会发生变化,也会更新我想要的元素。
不确定这是否可能?
那是你要的吗?它将提醒保证金值。将其存储在某个变量中并根据需要使用它。
http://jsfiddle.net/uv7hF/
$(document).ready(function(){ alert($(".aa").css("margin")); }); <div class="aa"> a </div> .aa{ margin: 0 auto; width:50px; background-color:red; }