把php嵌入script标签里面,如果有空行的话就会解析错误。有什么解决方案?
document.getelementbyid('content').innerhtml = marked("");
把php嵌入script标签里面,如果有空行的话就会解析错误。有什么解决方案?
document.getelementbyid('content').innerhtml = marked("");
好像楼上两位 @b9132 @kevins1022 没有理解楼主的问题所在.
楼主的问题是 $data 变量中有很多行, 即有换行符, 然后如果直接输出的话, 会在JS的代码块中出现换行,
然后会产生JS错误.
类似于这样:
<script type="text/javascript">
function marked(v){
return v;
}
document.getElementById('content').innerHTML = marked("hello
world
asldkfjalsdjkf");
</script>所以比较简单的做法是, 把
和
手工进行转义.
立即学习“PHP免费学习笔记(深入)”;
完整测试代码:
<?php
$data = "hello
world
asldkfjalsdjkf";
$data = str_replace(array("
", "
"), array("\r", "\n"), $data);
?><!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Test</title>
</head>
<body>
<pre class="brush:php;toolbar:false;" id="content">执行效果:
最终浏览器得到的HTML代码为:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Test</title>
</head>
<body>
<pre class="brush:php;toolbar:false;" id="content">
PHP怎么学习?PHP怎么入门?PHP在哪学?PHP怎么学才快?不用担心,这里为大家提供了PHP速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号