javascript JS nl2br

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript JS nl2br相关的知识,希望对你有一定的参考价值。

function nl2br (str, is_xhtml) {
    if (typeof str === 'undefined' || str === null) {
        return '';
    }
    var breakTag = (is_xhtml || typeof is_xhtml === 'undefined') ? '<br />' : '<br>';
    return (str + '').replace(/([^>\r\n]?)(\r\n|\n\r|\r|\n)/g, '$1' + breakTag + '$2');
}

以上是关于javascript JS nl2br的主要内容,如果未能解决你的问题,请参考以下文章

PHP 在使用 nl2br 时忽略空白字符的新行

在 PHP 中使用 nl2br()

php 冷门函数 - nl2br() 函数

mysql 显示回车但 nl2br 不维护它们

nl2br:要中断的新字符

textarea 上的 nl2br 和 htmlentities