コンマ区切りの文字列である変数を渡す確認ポップアップ ダイアログがあります。
コンマを置き換えて改行を導入するにはどうすればよいですか?
置き換えて使ってみました。'\n'
バックエンドから分割リストを渡してみました。しかし、何も機能していないように見えます —confirm()
テスト目的で使用された法線は正常に機能していますが。
var listcontrol = document.getElementById(id3);
var List = listcontrol.innerText;
var finallist = List.replace("\n", "\n");
if (checkboxCell.checked == false) {
if (labelCell.innerText == "Yes") {
confirm("The selected exam is present in the following certifications: " + "\n" + finallist + "\n" +
"Uplanning this exam here would unplan the same exam under other certification(s) also.");
}
}