你好替換,JavaScript字符串與另一個值
var s = "width:20px;height:25px;color:red;font-family:myfontfamily";
我有這樣的字符串,現在如何更改寬度的值,高度等使用javascript.there可以之後或之前是\n
屬性(寬度,高度等)..
例如:我想在s
上將width
更改爲50px
。 所以這將是
var s = "width:50px;height:25px;color:red;font-family:myfontfamily";
我的另一個問題重新鋪板這裏Regular Expression to get text from css,但它不能正常工作正是我需要的。
請幫幫我。
謝謝。
Update : You can see the Result on my fiddle here : http://jsfiddle.net/jitheshkt/s2DJR/14/
嗨。爲什麼不使用js內置樣式的修飾符,而不是使用直接的CSS字符串?像'document.getElementById('thing')。style.width ='50px';' –
字符串s來自編輯器,而不是來自網頁,我也想將數據備份到該editor.also這不是DOM對象,只是字符串。 – Red