例如,我在下面有以下jquery代码:
$("#AddToList").html(<p>Testing Internals</p>);
如何使用以下属性和值重新定位上面html(<p>Testing Internals</p>)
内的元素:
margin-left = 20px
答案 0 :(得分:0)
只需使用一点内联CSS魔法! Demo
$('p').html('<p style="padding: 10px;">bar</p>');
答案 1 :(得分:0)
CSS
#AddToList p {
margin-left : 20px;
}
INLINE
html(<p style="margin-left:20px;">Testing Internals</p>);