javascript 代码不懂
$(document).ready(function() {
$("#span_announcedate").load("/AjaxMethods/AjaxResume.aspx", { action: "announcedate", id: rid, t: (new Date().getTime()) });
$("#td_photo").load("/AjaxMethods/AjaxResume.aspx", { action: "resumePhoto", id: rid, t: (new Date().getTime()) });
$("#contact").load("/AjaxMethods/AjaxResumeContacts.aspx", {
action: "resumecontacts",
resumeid: rid,
issee: 0,
t: (new Date().getTime())
});
});
请大家给我解释以下action id等的用处???
$("#td_photo").load("/AjaxMethods/AjaxResume.aspx", { action: "resumePhoto", id: rid, t: (new Date().getTime()) });
------解决方案--------------------这是 Ajax调用后台函数
你看看你的AjaxResume.aspx页面中是否有一个 函数明 resumePhoto(string ID,DateTime t)的一个函数,
并且这个函数上面有个属性
【AJAX】
------解决方案--------------------{ action: "resumePhoto", id: rid, t: (new Date().getTime()) }
---------------------------------
这个是发送请求时传递的参数。