我正在使用http://code.google.com/p/jquery-in-place-editor/
在我的'p'标签中,我有:
<p id="editme2">Hello...<br />Hi</p>
但编辑文本会在textarea(一行)中生成“Hello ... Hi”
如果在textarea中显示文字时,如何用\ n 替换'br'?
我正在使用:
$j("#editme2").editInPlace({
url: "admin.sub.inc.php",
bg_over: "#DBE5C0",
field_type: "textarea",
textarea_rows: "15",
textarea_cols: "35",
saving_image: "../images/indicator.gif",
value_required: true,
show_buttons: true,
success: function(data){
var result = data.replace(/(\r\n|\r|\n)/g, "<br />");
$j("#editme2").html(result);
}
});
感谢您的帮助......
答案 0 :(得分:1)
使用“pre”标签代替“p”标签。