0

我正在使用多选下拉列表来过滤存储在我的数据库中的图像。结果是分页的,但是一旦过滤结果,分页就会失败。过滤器使用 ajax 对数据库进行 php 调用。

我认为正在发生的是,一旦将结果加载到 div 中,分页 javascript 函数已经触发并且不会第二次。有没有办法在每次过滤结果时调用该函数?

我相信我每次只需要回忆一下:

    <script type="text/javascript">

jQuery(function($){

    $('ul#items').easyPaginate({
        step:6
    });

});    

    </script>

阿贾克斯调用:

<script>
function filterResults(sel)
{
    var selectedOptions = [];
    for (var i = 0; i < sel.options.length; i++) {
        if (sel.options[i].selected) {
            selectedOptions.push("'" + sel.options[i].value + "'");
        }
    }
    if (selectedOptions.length == 0) {
        document.getElementById("divResults").innerHTML="";
        return;
    }
    str = selectedOptions.join(",");
    if (window.XMLHttpRequest) {// code for IE7+, Firefox, Chrome, Opera, Safari
        xmlhttp=new XMLHttpRequest();
    } else  {// code for IE6, IE5
        xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
    }
    xmlhttp.onreadystatechange=function() {
        if (xmlhttp.readyState==4 && xmlhttp.status==200) {
            document.getElementById("divResults").innerHTML=xmlhttp.responseText;
        }
    }
    xmlhttp.open("GET","filter_ajax.php?filter="+str,true);
    xmlhttp.send();
}

</script>

ajax_filter.php:

<?php

    include ("connect.php");

    $filter = $_GET["filter"];
    $filterIn = $filter;

        $result = mysql_query("SELECT * FROM edt_images
                                WHERE category1 IN ($filterIn)
                                OR category2  IN ($filterIn)
                                OR category3  IN ($filterIn)
                                OR category4 IN ($filterIn)
                                OR category5 IN ($filterIn)
                                OR category6 IN ($filterIn)")                           
            or die(mysql_error());

        echo "<div id='results_container'>";
        echo "<ul id='items'>";

        while ($row = mysql_fetch_array($result)) {

            echo "<li><img src='files/300x200/thumb2_".$row['item_name'].".".$row['file_extension']."' class='filtered_images' border='0'/></li>"; 
        }
        echo "</ul>";
        echo "</div>";
?>
4

3 回答 3

1

如果您使用 jQuery,您可以filterResults利用它提供的框架大大简化函数中的代码。我会在这里阅读一下,因为您会对广泛的功能感到惊讶。

这段代码是你之前代码的 jQuery 等价物,

   function filterResults(sel) {
        var selectedOptions = [];
        for (var i = 0; i < sel.options.length; i++) {
            if (sel.options[i].selected) {
                selectedOptions.push("'" + sel.options[i].value + "'");
            }
        }
        if (selectedOptions.length == 0) {
            $("divResults").html("");
            return;
        }
        filteStr = selectedOptions.join(",");
        $.ajax({
            url: "http://www.google.com",
            type: "get",
            dataType: "html",
            data: {
                filter: filteStr
            },
            success: function (responseHtml) {
                $("divResults").html(responseHtml);
                //You can put your code here
                $('ul#items').easyPaginate({
                    step: 6
                });
            },
            error: function (responseHtml) {
                //Handle error
            }
        });
    }

为了回答这个问题,successajax 调用回调中的代码将在从服务器接收到数据后执行。上面的代码应该可以按预期工作。

几乎所有要知道的东西都在这里这里。;)

于 2013-01-28T13:27:03.377 回答
0

出色地

根据评论,我将不得不研究 javascript 和 jquery,以前从未真正关心过它。

无论如何,通过调用 javascript 函数

if (xmlhttp.readyState==4 && xmlhttp.status==200) {
            document.getElementById("divResults").innerHTML=xmlhttp.responseText;
            RESTATING HERE
}

我能够让它工作。

于 2013-01-28T13:30:00.223 回答
-1

将 javascript 调用放入您的 php-ajax 回显中,例如:

<?
$msg = "hello";
?>
<script type="text/javascript">alert("<?=$msg?>"></script>
于 2013-01-28T13:26:12.557 回答