1. 程式人生 > >textarea文字域回車切換

textarea文字域回車切換

// 回車轉<br/>
function getFormatCode(strValue){
    return strValue.replace(/\r\n/g, '<br/>').replace(/\n/g, '<br/>').replace(/\s/g, ' ');
}

// <br/>轉回車
function getCode(strValue) {
    return strValue.replace(/<br\/>/g, "\n");
}

 

js中