jQuery .hide()和.show()不起作用

时间:2013-10-24 05:14:37

标签: javascript php jquery html ajax

我使用php代码动态生成此代码: -

<div class="mailList" id="M_6">
    <div class="mailListHeader" id="H_6">
        <img style="float:right; display:none;" class="loaderIMG" id="LOADER_6" src="images/preloader.gif">
        Sent by <strong>Admin</strong> on <strong>Oct 03 2013 02:53 PM</strong> to <strong>Received Response</strong> for Quarter <strong>3</strong> Year <strong>2013</strong>.<br>
        Subject: <strong>Test Mail</strong><br>
    </div>

    <div class="mailListContent" id="C_6">
        <div class="closeContent" id="CC_6">Close [x]</div>
        <span id="SPAN_6"></span>
    </div>

    <div class="mailListFooter" id="F_6">
        <span class="mailContentBtn" id="MCBTN_6" style="font-size:11px; color:#09C; cursor:pointer;">
            View Content
        </span>
        <span class="mailListBtn" id="MLBTN_6" style="float:right; font-size:11px; color:#C06; cursor:pointer;">
            Successfull-[0] Failed-[4]
        </span>
    </div>
</div>

然后,用户可以点击查看内容 Successfull- [0] Failed- [4] ,这将发出ajax请求,而不是显示div mailListContent中的结果。下面是jquery ajax请求的代码: -

$(".mailContentBtn, .mailListBtn").click(function(){
    var currentId = $(this).attr('id');
    currentId = currentId.split("_");
    var actualId = currentId[1];

    if($("#C_"+actualId).is(":visible")) {
        $("#C_"+actualId).hide("slow","swing");
    }
    $("img#LOADER_"+actualId).show();

    if(currentId[0]=="MCBTN") {
        var dataString ="action=getMailContentByID&mailID="+actualId;  
    } else {
        var dataString ="action=getMailListByID&mailID="+actualId;
    }

    $.ajax({
        type: "POST",
        url: "include/getMail.php",
        data: dataString,
        cache: false,
        async: false,
        success: function(html) { 
            $("#SPAN_"+actualId).empty();
            $("#SPAN_"+actualId).append(html);

            $("#C_"+actualId).show("slow","swing");
            $("img#LOADER_"+actualId).hide();
        } 
    });
});

请求和事件工作正常,问题是每次用户点击查看内容成功 - [0]失败 - [4] 加载图片是不显示。如您所见,我为每个加载图像提供一个唯一的ID,而不是只有1个加载图像将显示在clik上。 Google Chrome中的检查代码没有错误。我该如何解决这个问题?

谢谢。

2 个答案:

答案 0 :(得分:3)

在您对$ .ajax的调用中,将“async”选项更改为“true”。因为在您的情况下,$ .ajax在显示加载图像时阻止ui线程同步执行。

答案 1 :(得分:0)

你错过了:

$(document).ready(function () {
});

试试这个:

<script>
        $(document).ready(function () {
            $(".mailContentBtn, .mailListBtn").click(function () {
                var currentId = $(this).attr('id');
                currentId = currentId.split("_");
                var actualId = currentId[1];

                if ($("#C_" + actualId).is(":visible"))
                    $("#C_" + actualId).hide("slow", "swing");

                $("img#LOADER_" + actualId).show();

                if (currentId[0] == "MCBTN") {
                    var dataString = "action=getMailContentByID" +
                            "&mailID=" + actualId;
                }
                else {
                    var dataString = "action=getMailListByID" +
                            "&mailID=" + actualId;
                }

                $.ajax({
                    type: "POST",
                    url: "include/getMail.php",
                    data: dataString,
                    cache: false,
                    async: false,
                    success: function (html) {
                        $("#SPAN_" + actualId).empty();
                        $("#SPAN_" + actualId).append(html);

                        $("#C_" + actualId).show("slow", "swing");
                        $("img#LOADER_" + actualId).hide();
                    }
                });
            });
        })


    </script>