如何在JavaScript中的数组值中使用换行符?
要在每次出现〜时在数组值中添加换行符,请首先拆分数组。拆分后,为〜的每次出现添加换行符,即<br>。
例如,
This is demo text 1!~This is demo text 2!~~This is demo text 3!
这将为〜出现添加如下换行符:
This is demo text 1! This is demo text 2! This is demo text 3!
示例
<!DOCTYPE html>
<html>
<body>
<h2>Adding line break</h2>
<script>
var myArray = 'This is demo text 1!~This is demo text 2!~~This is demo text 3!~This is demo text 4!~~This is demo text 5!';
document.write("Original Array: "+myArray);
var brk = myArray.split('~');
var res = brk.join(" <br> ");
document.write("<br><br>"+res);
</script>
<p>Each occurence of ~ adds a line break above.</p>
</body>
</html>热门推荐
10 除夕的拜年祝福语简短
11 婶婶生日贺词简短祝福语
12 中式蛋糕开业祝福语简短
13 喜得新房文案祝福语简短
14 宝子生日祝福语简短
15 姐妹分手了祝福语简短
16 女朋友考试祝福语简短
17 女神节日简短祝福语大全
18 成长仪式的简短祝福语