在編寫javascirpt程式過程中,以$.post方法傳送數據,若資料中字元含有'
var jsonstr='{"value" efg"}';
$.post(
url,
{ "jsonstr": jsonstr },
function (data, status) {
});
需要轉義後再使用,使用下面的transferredChars函數轉義後,再傳遞資料$.post即能執行。
此函數使用將''分別替換為''。
transferredChars=function (htmlChars) { tcs = tcs.replace(/>/g, ">");
return tcs;
}
var jsonstr='{value":"abjsonstr=transferredChars(jsonstr);
$.post(
url,
{ "jsonstr": jsonstr },
function (data, status) {
});
所使用的jquery版本為1.7.1.min