我想将文本保存在正在pre
格式化的 contenteditable div 中。我将如何获得文本的pre
形式而不是文本的位置\n
和\r
被省略?
$('#save').click(function(e) {
var id = "board_code";
var ce = $("<pre />").html($("#" + id).html());
if ($.browser.webkit)
ce.find("div").replaceWith(function() { return "\n" + this.innerHTML; });
if ($.browser.msie)
ce.find("p").replaceWith(function() { return this.innerHTML + "<br>"; });
if ($.browser.mozilla || $.browser.opera || $.browser.msie)
ce.find("br").replaceWith("\n");
alert( ce.text() );
});
http://jsfiddle.net/AD5q7/10/这不起作用
尝试 contenteditable div 的字符串
更新:通过键入字符串来尝试。粘贴字符串时可能没有问题。
1
abc def
gh i
jkl
2
#include<iostream.h>
#include<conio.h>
int main(){
int grade, passingMark=75;
cout<<"Hi there, please enter your mark: ";
cin>>grade;
if( ((grade >= passingMark)||(grade==35)) && (grade<101)){
cout<<"\nPass!";
}
return 0;//15lines
}
保存文件也必须像这样格式化,并且必须删除\n\r。我希望警报应该包括 \n