下面的代碼;它會獲取包含html代碼的「div」的內容,並保存在ajsave.php中。但是,當DIV的HTML內容包括「#」字符,數據被「#」這樣的短接後:英鎊字符(#)在jquery ajax
$.ajax({
type: "GET",
url: "ajsave.php",
data: "usr="+id+"&divcontent="+cont,
success: function(msg){
$("#result").html(msg);
}});
英鎊字符「#」可以被URL編碼爲「%23」。上面提到的「%22」會解碼爲雙引號 – gabor