2
<div class="bbQuote">
<div class="quoteAuthor">Joe Block</div>
<div class="quoteContent">This is the first message<br>
<div class="bbQuote">
<div class="quoteAuthor">Jane Doe</div>
<div class="quoteContent">This is the second message</div>
</div>
</div>
</div>
轉換下面的HTML到以下bbcode
[quote=Joe Block]
This is the first message
[quote=Jane Doe]
This is the second message
[/quote]
[/quote]
我怎樣才能做到這一點使用jQuery?
PS:嵌套HTML可以有零個或更多的孩子
HTML是在頁面還是字符串?在我認爲的頁面中? –
HTML使用'jQuery('#commentContent')。html()'解析,因此它可以是html或文本。 – Optimus
我做了一個你想要的東西 - [小提琴](http://jsfiddle.net/ult_combo/tE77x/)的原始示例,但它不會轉換其他bbCode標籤([b],[i],定位標籤等等),2.縮進不相同。我會使用ajax從數據庫中獲取實際的發佈內容或使用合適的jQuery bbCode解析庫。 –