这真让我抓狂。我有一个 PHP 脚本,它从 MySQL 获取一些数据并将其保存为一个字符串,其中元素用逗号分隔。
JavaScript 获取该字符串并将逗号替换为 '\n' 并将其显示在文本区域中。现在,我可以从文本区域向文本添加新行。单击按钮时,应将字符串转换回以逗号分隔的元素,然后再次设置为 PHP(通过 AJAX)进行保存。问题在于 JavaScript,当文本区域中的行数超过 3 行时,它无法检测到“\n”字符。
// These are the lines of the text-area, after replacing ',' by '\n'
var textarealines=input_hidden_element.value.replace(',','\n').replace(',','\n');
// When trying to replace '\n' by ',' and send back, PROBLEM!
var AjaxRequest = WT.AjaxObject();
AjaxRequest.open('POST', WT.AjaxLocation, true);
AjaxRequest.setRequestHeader('Content-type', 'application/x-www-form-urlencoded');
AjaxRequest.send('values=' + textarealines.replace('\n', ',').replace('\n', ','));
AjaxRequest.onreadystatechange = function() {
// Bla bla bla
}
那么,我做错了什么?最多两行新行被逗号正确替换,但是当我添加超过 2 行时,只有前 2 行被替换,下一行以“n”字符发送,作为包含“\n”的单行文本。谢谢