要將新行添加到JavaScript sting中,可以使用以下代碼嗎?它是根據編程標準嗎?或者還有其他方法可以這樣做嗎?將新行添加到JavaScript sting中
E.g:
var string = "check";
alert(string);
var newstring = string + "\n\n";
alert(newstring);
要將新行添加到JavaScript sting中,可以使用以下代碼嗎?它是根據編程標準嗎?或者還有其他方法可以這樣做嗎?將新行添加到JavaScript sting中
E.g:
var string = "check";
alert(string);
var newstring = string + "\n\n";
alert(newstring);
,我認爲它是好的。如果您使用警報進行調試,請改用 console.log("string + "\n");
。
\n
是處理在警報框新線的正確途徑。
只需添加你想在你的字符串的新線\n
每次:
var str = 'Test\nTest2\nTest3';
alert(str);