-1
用例1,以產生一個JSON陣HTML元素:需要在Javascript
<sub><b><i>boldSubscriptContent</i></b></sub>
輸出JSON:
[{
"subscript": true,
"content": "boldSubscriptContent",
"bold": true
}]
用例2:
withoutAnyHTML<b>boldContent<sub>boldSubscriptContent</sub></b>
輸出JSON:
[{
"content": "WithoutAnyHTML"
}, {
"bold": true,
"content": "boldContent"
}, {
"bold": true,
"subscript": true,
"content": "boldSubscriptContent",
"outerHTML": "<sub>subscriptContent</sub>"
}]
使用案例3:
<b><i>ItalicContent</i><sub>subscriptContent</sub><sup>supscriptContent</sup></b>
輸出JSON:
[{
"italic": true,
"bold": true,
"content": "ItalicContent",
"outerHTML": "<i>ItalicContent</i>"
}, {
"subscript": true,
"bold": true,
"content": "subscriptContent",
"outerHTML": "<sub>subscriptContent</sub>"
}, {
"superscript": true,
"bold": true,
"content": "supscriptContent",
"outerHTML": "<sup>supscriptContent</sup>"
}]
隨意一旦你完成後您的解決方案它... – Andreas
首先,自己嘗試一下。 SO不是代碼寫入服務。其次,請讓你的問題具有可讀性。在我編輯它之前,這是一個完整的混亂。 –
感謝您使它正確..第一次使用堆棧溢出發佈我的問題。下次會照顧。 –