我正在使用谷歌浏览器开发者控制台练习javascript。据我所知,我们使用\用Javascript在文档上写多行。我试着写
document.write("Hello world \ How are you?");
但它只是显示" Hello world你好吗"。我期待着你好世界,你是如何在不同的路线。
答案 0 :(得分:0)
浏览器使用HTML来显示内容。
在HTML中,您使用<br/>
(或<br>
或</br>
)为&#34;中断行&#34;制作新行。
如果您愿意将其分为两行,使用此标记代替\n
迎接!
答案 1 :(得分:0)
如果您将在Chrome控制台中运行
,则可以通过List<int> ids = HttpContext.Current.Request.Cookies("ItemInCart") != null ? (List<int>)HttpContext.Current.Request.Cookies("ItemInCart") : null;
if (ids != null) {
foreach (int id in ids) {
ListBox1.Items.Add(String.Format("select * from customer where id={0}", id));
}
}
在JavaScript中编写新行
<br>
但check it了解JavaScript中的新行