我想使用 css() 为元素添加样式并保存它第一步工作正常但是当我想保存它时 jquery 给我的代码太详细了例如
<div id="d"></div>
$('#d').css("border-radius","55px");
和
alert($('#d').attr('style'));
给
border-top-left-radius: 55px;
border-top-right-radius:55px;
border-bottom-right-radius:55px;
border-bottom-left-radius:55px;
反正有没有得到不太详细的代码,比如
border-radius:55px
?