function responseAdvice(msgid,userid){ var textid="rep_text_"+msgid; var statusid="status_"+msgid; var content=document.getElementById(textid).value; if(content==""){ alert("不能爲空"); return; } var timestamp = Date.parse(new Date()); var encoded={ "userid":userid, "content":content, "time":timestamp, "message_id":msgid } var jsonstr=JSON.stringify(encoded); $.ajax({ type:'post', url:'__URL__/response_advice', data: { "jsondata":jsonstr }, dataType:'json', success:function(json){ document.getElementById(statusid).innerHTML=1; } }); }
在上面的代碼中$.ajax的各個域的類型名是固定的,必須爲「type」"data"「url」"dataType" "success"php
其中data中的大括號的方式在php端就能夠直接$_POST['jsondata']接收到數據。encoded 還不是json類型,真是小白啊,我剛知道這實際上是js的對象類型,要用JSON.stringify進行轉換爲json字符串。success中的函數裏面的參數就是服務端返回的字符串。
ajax