0
我收到一個字符串作爲輸入,我如何獲得div之間的值?例如:正則表達式匹配使用JQuery
var temp = "This is line one.<div>This is line two.</div><div><br></div><div>This is line three with a line break</div><div><br></div><div> </div><div><br></div><div>This is line four with a line break and space.</div>";
如何才能將文本句子從數組中取出?我曾嘗試.filter和.each'div',但他們都錯過了第一個。
感謝參宿一,但我在哪裏把$(「格」)每個。 (函數(){...? – Freakishly
現在我正在查詢div(而不是文本(),因爲我想捕獲換行符作爲單獨的列表項)html(),但這不正確: $('#rawtext')。html()。$('div')。each(function(){... – Freakishly