我想在 Javascript 警告框中显示三行文本,文本居中对齐。
我为此使用以下代码,
alert(
'\t\t\t\t'+"Congratulations!" + '\n\t' +
"You are now subscribed with test.com!" + '\n' +
"Keep on eye out on your inbox for future updates from us!"
);
它在 Firefox 上运行良好。但在 chrome 中,制表符 ( \t
) 字符不起作用。文本在所有行中左对齐。请帮忙。