我有一个代码,允许使用class to head section添加样式:
$("<style type='text/css'> .redbold{ color:#f00; font-weight:bold;} </style>").appendTo("head");
如果我在其他地方调用此代码,则每次都会创建一个新的样式部分,它看起来像这样:
<style type="text/css"> .redbold{ color:#f00; font-weight:bold;} </style>
<style type="text/css"> .newclass{ color:black;} </style>
这可以多次向样式部分添加一个新类,而不是每次都创建新类吗?谢谢你的帮助
答案 0 :(得分:1)
在样式块上添加id:
<style id="mystyles">...</style>
然后使用jQuery访问它:
$('#mystyles').append(...);
现在您可以随意访问它!