我想知道是否有人可以帮助我。
以下代码的提取成功创建了一个表格,显示了与当前用户相关的记录。
/* display row for each location */
echo "<tr>\n";
$theID = $row['locationid'];
echo " <td style='text-align: Center'>{$row['locationname']}</td>\n";
echo " <td style='text-align: Left'>{$row['returnedaddress']}</td>\n";
echo " <td style='text-align: Center'>{$row['totalfinds']}</td>\n";
echo " <form name= 'locationsconsole' id= 'locationsconsole' action= locationsaction.php method= 'post'><input type='hidden' name='lid' value=$theID/> <td><input type= 'submit' name= 'type' value= 'Details'/></td><td><input type= 'submit' name= 'type' value= 'Images'/></td><td><input type= 'submit' name= 'type' value= 'Add Finds'/></td><td><input type= 'submit' name= 'type' value= 'View Finds'/></td><td><input type= 'submit' name= 'type' value= 'Delete'/></td></form>\n";
</tbody>
</table>
<div align="center"><p id="deletelocationresponse"></p></div>
在此部分代码的末尾,您会看到有一个Delete
按钮。单击此按钮后,将从表中删除记录,删除功能将正常工作。
除了删除按钮,您还会注意到有一个名为deletelocationresponse
的div。这会运行一个jquery脚本,向用户提供屏幕消息,告诉他们删除是否成功。这个代码如下。
<script type="text/javascript">
$(document).ready(function(){
$('#locationsconsole').submit(function(){
//check the form is not currently submitting
if($(this).data('formstatus') !== 'submitting'){
//setup variables
var form = $(this),
formData = form.serialize(),
formUrl = form.attr('action'),
formMethod = form.attr('method'),
responseMsg = $('#deletelocationresponse');
//add status data to form
form.data('formstatus','submitting');
//show response message - waiting
responseMsg.hide()
.addClass('response-waiting')
.text('Please Wait...')
.fadeIn(200);
//send data to server for validation
$.ajax({
url: formUrl,
type: formMethod,
data: formData,
success:function(data){
//setup variables
var responseData = jQuery.parseJSON(data),
klass = '';
//response conditional
switch(responseData.status){
case 'error':
klass = 'response-error';
break;
case 'success':
klass = 'response-success';
break;
}
//show reponse message
responseMsg.fadeOut(200,function(){
$(this).removeClass('response-waiting')
.addClass(klass)
.text(responseData.message)
.fadeIn(200,function(){
//set timeout to hide response message
setTimeout(function(){
responseMsg.fadeOut(300,function(){
$(this).removeClass(klass);
form.data('formstatus','idle');
});
},2000)
setTimeout(function() {
$('body').fadeOut(400, function(){
location.reload();
setTimeout(function(){
$('body').fadeIn(400);
}, 500);
window.scrollTo(x-coord, y-coord);
});
}, 2000);
});
});
}
});
}
//prevent form from submitting
return false;
});
});
</script>
<style type="text/css">
#deletelocationresponse {
display:inline;
margin-left:4px;
padding-left:20px;
font:Calibri;
font-size:16px;
}
.response-waiting {
background:url("images/loading.gif") no-repeat;
}
.response-success {
background:url("images/tick.png") no-repeat;
}
.response-error {
background:url("images/cross.png") no-repeat;
}
</style>
我遇到的问题是,当点击Delete
按钮时,屏幕上的消息会卡在Please wait
消息上。
现在我知道这个脚本有效,因为我在其他页面上使用它,显然相关字段已经更改。所以我把它缩小到一个问题,就是拿起我的表单名称,这是jQuery代码中的这一行:$('#locationsconsole').submit(function(){
。
在我的其他页面上,我的表单是通过HTML创建的,而此脚本使用PHP。
我已经尝试过研究这个,但我并不是特别精通JavaScript,所以我不太清楚我应该寻找什么。有人可能会告诉我,有没有办法以不同的方式调用表单?
感谢任何帮助。
非常感谢和亲切的问候
答案 0 :(得分:0)
第一步是进行基本调试。 FireBug或其他客户端调试工具可以为您提供强大的功能。您也可以开始发出警报。例如,您可以在javascript中添加类似alert('got here!');
内联的代码,以查看哪一行专门引发了错误。如果您使用的是FireBug,可以将其替换为console.log('got here');
console.log还允许您转储嵌套变量,如果您发现问题在您的响应中。
其次,将呈现的页面保存为HTML,然后开始对其进行故障排除。这消除了调试的PHP方面,因为您在AJAX请求的JSON响应中有HTML错误或错误。
Firebug等客户端调试工具也可以让你看到AJAX请求和原始响应。