Javascript中拼接大量字符串的方法
在php、python中都有heredoc方式的字符串定义方法:
php:
$sql=<<<EOD select* frompages wherepagename='$pn' EOD;
python:
print""" Thisisanexampleofastringintheheredocsyntax. Thistextcanspanmultiplelines """
js拼接大量字符串没个heredoc风格的操作符是比较繁琐的:
拼接方式一:
varstr="\ Hereislineone\ Andlinetwo\ Finally,linethree!\ ";
alert(str);