DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> JavaScript綜合知識 >> javasciprt下jquery函數$.post執行無響應的解決方法
javasciprt下jquery函數$.post執行無響應的解決方法
編輯:JavaScript綜合知識     

 這篇文章主要介紹了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 
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved