textarea内容有换行时存入数据库丢失问题的解决 (转载)
http://blog.csdn.net/zhang_j_h/article/details/44563167
?
?
存入:
function GetInputData(id, cmd) {
var postdata = "{ \"action\":\"" + cmd + "\",";
$("#" + id + " input[type!='checkbox']").each(function () {
postdata += "\"" + $(this).attr("name") + "\":\"" + $(this).val() + "\",";
});
$("#" + id + " input[type='checkbox']").each(function () {
postdata += "\"" + $(this).attr("name") + "\":\"" + this.checked + "\",";
});
$("#" + id + " select").each(function () {
postdata += "\"" + $(this).attr("name") + "\":\"" + this.value + "\",";
});
$("#" + id + " textarea").each(function () {
postdata += "\"" + $(this).attr("name") + "\":\"" + this.value.replace(/\r|\n/g, "<br>") + "\",";
});
postdata = postdata.substr(0, postdata.length - 1);
postdata += "}";
return eval("(" + postdata + ")");
}
?
提交:var json = GetInputData("AthleteViolationInfoForm", "submit");
讀取:
$("#ipt_actionresult").val(dataObj.ipt_actionresult.replace(/<br>/g, '\n'));//讀取數據時把數據匹配正則替換正確的回車符號(符合的編碼,用于正確顯示)
?
?
alue.replace(/<br>/g, "");//替換換行為空
轉載于:https://www.cnblogs.com/ooip/p/4871747.html
新人創作打卡挑戰賽發博客就能抽獎!定制產品紅包拿不停!總結
以上是生活随笔為你收集整理的textarea内容有换行时存入数据库丢失问题的解决 (转载)的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: supervisord进程管理
- 下一篇: 设计模式(结构型模式)——装饰模式(De