0

我想知道是否有人可以帮助我。

下面的代码摘录成功地创建了一个显示与当前用户相关的记录的表。

/* 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按钮。单击此按钮后,将从表中删除一条记录,并且删除功能正常工作。

除了删除按钮,您会注意到还有一个名为 的 div deletelocationresponse。这会运行一个 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,所以我不太确定我应该寻找什么。有人可以告诉我,有没有办法以不同的方式调用表格?

任何帮助将不胜感激。

非常感谢和亲切的问候

4

1 回答 1

0

第一步是进行基本调试。FireBug 或其他客户端调试工具可以为您提供强大的功能。您也可以开始设置警报。例如,您可以alert('got here!');在 javascript 中放置类似 inline 的代码,以查看具体是哪一行引发了错误。如果您使用的是 FireBug,则可以将其替换为console.log('got here');

如果您发现问题出在您的响应中,console.log 还允许您转储嵌套变量。

其次,将呈现的页面保存为 HTML,然后开始对其进行故障排除。这消除了调试的 PHP 方面,因为您有 HTML 错误或来自 AJAX 请求的 JSON 响应中的错误。

Firebug 等客户端调试工具还可以让您查看 AJAX 请求和原始响应。

于 2012-07-13T15:45:44.233 回答