換行符和回車符...必須是編碼中最複雜的部分。 (對我來說)如何保留換行符
已經在頁面(這些來自數據庫存儲爲This from Ricardo\nAnd also a test\nRent 3000.00
)驗證碼:
<td title="This from Ricard
And also a test
Rent 3000.00" style="width:198px;text-align:left">....</td>
然後用它來獲取與 '隱藏' \ n的
var v = $('#'+i).parent().attr('title'); // i = id of <span> child of <td>
title屬性
一路上,換行符迷路,並使用變量v到一個文本輸入框:
This from RicardAnd also a testRent 3000.00
需要什麼來保存\n's
,並將其改爲如下所示?
是您的文本輸入框多行或單行嗎?你想\ n寫出來或只是在那裏休息嗎? – nooitaf
你必須爲'\ n'解析字符串,然後用'\\'''逃脫你的\\ \\ .. –
@FrançoisWahl:那就是他從哪裏得到的。然後他說「中斷會丟失並將變量v用於文本輸入框」。我假設他將文本輸入的值設置爲從td標題獲得的值「v」。 – nooitaf