百度编辑器前面自动加换行问题
程序员文章站
2022-05-26 21:19:56
...
<textarea id="str_content" name="str[content]" style='height:200px;width:100%;'>
<?php
$str = $info['content'];
echo $str;
?>
</textarea>
这么写的话,每次我编辑保存之后就会自动给我加<p><br/></p>
以为是百度编辑器的问题
然后将代码换成这样子,就好使了
<textarea id="str_content" name="str[content]" style='height:200px;width:100%;'><?php $str = $info['content'];echo $str;?></textarea>
代码中不能有换行
知道真相的我眼泪掉下来
记录下
上一篇: 聚类
下一篇: markdown 语法学习