0
  function sendM() {
new Ajax.Request("sendm.html", 
{ 
method: 'post', 
postBody: 'text='+ $F('text') +'&sub='+ $F('subject') +'&sname='+ $F('name') +'&sfmail='+ $F('email') +'to='+ $F('to'),
onLoading:showLoad,    
onComplete: showResponse
});
}
function showLoad(){
    $('dresult').innerHTML= "מבצע את הפעולה &nbsp;&nbsp;<br /><br />";
}

function showResponse(req){
    $('dresult').innerHTML= req.responseText;
}

hTML 表单代码:

<form id="sfunc" name="sfunc" onsubmit="return false;">
שם דוא"ל יעד 1 2 3 נושא הודעה  

4

1 回答 1

-1

您尝试在 showLoad 和 showResponse 初始化之前使用它们。将 showLoad 和 showResponse 的函数定义移到 Ajax 请求之上。

为了将来参考,请注意在您的 Ajax 处理程序中发生的任何错误都不会在您的浏览器错误控制台中打印出错误。您必须在处理程序中创建断点来解决问题。使用像 Firefox 的 Firebug 插件这样的调试器。

于 2011-01-06T20:26:34.973 回答