我在我的asp.net mvc(C#)應用程序中從數據庫動態加載樣式。如何使用jQuery獲取嵌入式樣式的css
我試圖改變加載的內聯樣式的一些屬性(背景,字體顏色,字體大小等)。我正在使用jquery.rule來做到這一點。
我需要使用jquery將包含更改的完整內聯樣式更新回數據庫。
頭內的內嵌樣式看起來像:
<style type="text/css">
<!
-- body
{
background: #fff;
margin: 0px;
padding: 0px;
font: normal 12px Tahoma, Verdana, Arial;
color: #636363;
}
a
{
color: #d0d0d0;
text-decoration: none;
}
#header
{
padding-left: 35px;
height: 60px;
vertical-align: middle;
padding-top: 25px;
}
-- ></style>
我需要更新的內聯樣式。怎麼做?
$('#elementid').css('font','arial')改變類和 $('#elementid')。css 'font')來獲取類值 – Mark 2009-11-14 12:45:32
我需要獲取頁面的更新內聯樣式。我用示例內聯樣式更新了我的問題 – Prasad 2009-11-14 13:19:58
哦,您的意思是內部**樣式表**,而不是內聯'樣式'屬性?使用'$('style')規則插件。cssText()'(用合適的選擇器替換''style''來選擇你的樣式表,如果你一直在使用的話)。 – bobince 2009-11-14 14:09:51