我已經JSON的格式如下,我試圖插入到Outlook /電子郵件客戶端的機身採用JSON格式的電子郵件體
location.href = "mailto:" + "[email protected]" + "?subject=" + "Notes" + "&body=" + JSON.stringify(data, null, 4);
給予4位JSON.stringify(data, null, 4)
[
{
"page": "article_0_page_0",
"note": "Note 1"
},
{
"page": "article_0_page_1",
"note": "Note 2"
}
]
我想輸出爲
<b>article_0_page_0</b>\n\r
Note 1
<b>article_0_page_1</b>\n\r
Note 2
請任何正則表達式解決方案。
編輯:我嘗試
var str = "";
for(var i=0; i<data.length; i++) {
str += "<strong>" + data[i].page + "</strong><br>" + data[i].note + "<br><br>";
}
能否請你描述你試過嗎? – k0pernikus
您能否向我們提供您迄今爲止所做的工作? – Oleander
@ k0pernikus你讓我用了11秒:) – Oleander