這篇文章主要介紹了javasciprt下jquery函數$.post執行無響應的解決方法,需要的朋友可以參考下
在編寫javascirpt程序過程中,用$.post方法發送數據,若數據中字符含有'<‘,將導致$.post無法成功執行。 代碼如下: var jsonstr='{"value":"abcd<efg"}'; $.post( url, { "jsonstr": jsonstr }, function (data, status) { }); 需要將其轉義後再使用,使用下面的transferredChars函數轉義後,再傳遞數據$.post即能執行。 此函數使用將'<'和‘>'分別替換為'<'和‘>'。 代碼如下: transferredChars=function (htmlChars) { var tcs = htmlChars.replace(/</g, "<"); tcs = tcs.replace(/>/g, ">"); return tcs; } 代碼如下: var jsonstr='{"value":"abcd<efg"}'; jsonstr=transferredChars(jsonstr); $.post( url, { "jsonstr": jsonstr }, function (data, status) { }); 使用的jquery版本為1.7.1.min