使用PHP在上升日期和下降日期之间切换onclick [英] Toggle onclick between ascending en descending date using PHP

查看:61
本文介绍了使用PHP在上升日期和下降日期之间切换onclick的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我遇到了这个问题.我正在尝试创建一个函数,可以按表中的日期对结果进行排序.到目前为止,我知道了:

I have got this problem. I am trying to make a function where I can sort results by dates in a table. So far I got this:

function wedstrijdenClub (){

    $laMatches = WaterpoloAPI::call("Matches", "getMatches", Array(
        "",
        "",
        isset($_GET["ClubId"]) ? $_GET["ClubId"] : "",
        "",
        "",

    ));

        $asc = $laMatches;
        $desc = $laMatches ;

        // Sort Matches ascending
       usort($desc, function($a, $b) {
                       return stringToUnix($a->Date) - stringToUnix($b->Date);
       });


       // Sort Matches descending

       usort($asc, function($a, $b) {
                       return stringToUnix($b->Date) - stringToUnix($a->Date);
       }); 

    echo '<div class="asc">'.implode('<br />',$asc).'</div>' ;
   echo '<div class="desc">'.implode('<br />',$desc).'</div>' ;

    echo "<h6 id='rcorners' style='background-color:#3db7e4; padding: 1rem; color:white;'><strong>Wedstrijden</strong></h6>";
    echo "<table class='hover'>";
    echo "<tbody >";

    $lnToday = strtotime(date("d-m-Y"));                          
                          $lcCurrent = "";                        
       foreach($laMatches as $loMatch) {
           if(stringToUnix($loMatch->Date) < $lnToday) {
                if($lcCurrent != $loMatch->Date) {     



echo "<thead>";
echo "<tr >";
echo "<th class='text-center date'>";
echo "$loMatch->Date</th>";
echo "<th class='text-center'></th>";      
echo "<th class='text-center'></th>";
echo "<th class='text-center'></th>";
echo "</tr>";               



echo "</tr>
          </thead>";           
                }               
                $lcCurrent = $loMatch->Date;           
           }
    echo "<tr class='text-center'>";
        echo "<td >$loMatch->Time</td>";
        echo "<td>$loMatch->HomeTeam </td>";
        echo "<td><strong><a href='..\wedstrijd?MatchId=".$loMatch->Id."'>$loMatch->ResultHome - $loMatch->ResultGuest </a></strong></td>";
        echo "<td> $loMatch->AwayTeam</td>";
    echo "</tr>";   
    }

    echo "</tbody>";
    echo "</table>";



}

在我的php页面

<style> div.asc, { display:block ; } div.desc { display:none ; } </style>
    <div class="large-12 columns block asc"><?php wedstrijdenClub(); ?></div>
                <div class="large-12 columns block desc"><?php wedstrijdenClub(); ?></div>

                <a class="asc">Asc</a>
 <a class="desc">Desc</a>

在我的页脚

<script>
jQuery(document).on('click','a.asc, a.desc',function(e){
e.preventDefault() ;
jQuery('div.block').hide() ;
jQuery('div.'+jQuery(this).attr('class')).show() ;
}) ;
</script>

在这里我称为比赛列表.它下降和上升...但是我希望在单击事件中使用它...我将如何执行此操作?我仍在学习...很抱歉,这是一个愚蠢的问题.

Where I call a list of matches. It descent and ascent ...but I want it on a click event ...how I am going to do this? I am still learning ...so sorry if it is a silly question.

推荐答案

我认为您需要的JS部分非常简单:

The JS part you need is really simple i think :

jQuery(document).on('click','a.asc, a.desc',function(e){
e.preventDefault() ;
jQuery('div.block').hide() ;
jQuery('div.'+jQuery(this).attr('class')).show() ;
}) ;

div.asc, { display:block ; }
div.desc { display:none ; }

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js">
</script>

<div class="block asc">A B C D E F</div>
<div class="block desc">F E D C B A</div>

 <a class="asc">Asc</a>
 <a class="desc">Desc</a>

请注意您的php部分:使用usort函数时,$ laMatches的值会更改,因此调用2次usort只会显示最后的结果.

Just be carefull with your php part : when you use usort function, the value of $laMatches is changed, so calling 2 times usort will only show you the last results.

您需要制作$ laMatches的副本并对副本进行排序:

You need to make copies of your $laMatches and sort the copies :

 $laMatches = Array('red','blue','green','brown','yellow') ;

    $asc = $laMatches ;
    $desc = $laMatches ;

   usort($desc, function($a, $b) {
                   return strlen($a) - strlen($b) ;
   });
   usort($asc, function($a, $b) {
                    return strlen($b) - strlen($a) ;
   });

   echo '<div class="asc">'.implode('<br />',$asc).'</div>' ;
   echo '<div class="desc">'.implode('<br />',$desc).'</div>' ;

这篇关于使用PHP在上升日期和下降日期之间切换onclick的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆