我.css()
用来从元素中获取样式。但是在 Firefox中并没有从元素中.css()
获取价值。margin
padding
请看小提琴:http: //jsfiddle.net/howtoplease/fMTsW/
这是我的jQuery代码:
$(document).ready(function(){
$('input').each(function(){
this.value = $('h3').css(this.name);
});
});
我的html代码
<h3 style="margin:20px;padding:20px;font-size:30px;font-family:'open sans';">
I am heading 3
</h3>
<input name="margin" />
<input name="padding" />
<input name="font-size" />
<input name="font-family" />