我想知道这是否可行,如果可以,我有一个长字符串,出于可维护性和可读性的目的,我想将换行符放入代码中,如下所示:
slices +=
'<div
class="'+settings.sliceClass+'"
style="
width:' + slicewidth + 'px;
height:' + sliceheight + 'px;
left:' + left + 'px;
top:' + top + 'px;
"><img src="'+slide.properties.src+'"
style="
position: relative;
left:' + -left + 'px;
top:' + -top + 'px;
width:' + Math.round(slide.properties.image.width * slide.properties.scale.width) + 'px;
height:' + Math.round(slide.properties.image.height * slide.properties.scale.height) + 'px;
">
</img></div>'
);
我不希望这些换行符出现在 HTML 输出中。
但是,这会返回一个SyntaxError: Unexpected EOF
.
有没有办法做到这一点?