js菜鸟问题 换行
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js菜鸟问题 换行相关的知识,希望对你有一定的参考价值。
var sToMatch="First second\nthrid fourth\nfifth sixth";
alert(sToMatch);
这样显示换行;
var sToMatch="First second\nthrid fourth\nfifth sixth";
document.write(sToMatch);
这样不显示换行,为什么?
一个是write,写完当前信息换行 参考技术A var sToMatch="First second</br>thrid fourth</br>fifth sixth";
document.write(sToMatch);
试试! 参考技术B document.write的时候,要对\n中的\进行转义吧!你试试吧,我没有测试的,如果不行,换成<br/>吧,这个肯定行的,已经测试过了
以上是关于js菜鸟问题 换行的主要内容,如果未能解决你的问题,请参考以下文章