本文介绍了Java多行警报的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

此代码

alert("Hello again! This is how we" + "\n" + "add line breaks to an alert box!");

不起作用。
Firefox JavaScript控制台将错误命名为未终止的字符串文字,并在\n之前指向符号。
我想用多行文本触发警报。请不要使用jQuery。

doesn't work.Firefox JavaScript console names error as "unterminated string literal" and points on " symbol before \n.I want to fire an alert with multi-line text. No jQuery please.

推荐答案

尚未测试,但这行得通吗?

Haven't tested but does this work?

alert("Hello again! This is how we \n add line breaks to an alert box!");

这篇关于Java多行警报的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-02 18:13