Home >Backend Development >PHP Tutorial >把一段html赋值给js变量遇到换行js提示错误问题

把一段html赋值给js变量遇到换行js提示错误问题

WBOY
WBOYOriginal
2016-06-23 14:08:471698browse

<script> <br /> var subject = '网速'; <br /> var message = '<font face="楷体,楷体_GB2312"><font size="5"><font color="red"><strong> 旅游时,碰到一群韩国人、有个韩国人很鄙夷的对我说:"在我们首尔,上网 <br /> 带宽至少30M起,不知贵国上网速度几何?"<br />空气顿时凝固了起'; <br /> <br /> </script>

比如这段,文字有换行,js就错误了,如何解决这些问题?html是动态的内容。


回复讨论(解决方案)

在每个换行符前加\号

在每个换行符前加\号
啥整?这样?

$info['content'] = str_replace("\n\r", "\\n\\r", $info['content']);


在每个换行符前加\号
我干脆把整段html放到一个div里面,再用js取div里面的内容就行了。

你的变量是如何赋值的

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn