再截个图

bug exp search
加了一些Ajax的东东,速度也快了点,还有一小部分功能没有完成,过几天回武汉了再发布出来,先截个图

{1d412531-5c63-4381-98c4-363902415bf0}.jpg

{1d412531-5c63-4381-98c4-363902415bf0}.jpg

大小: 31.09 K
尺寸: 500 x 211
浏览: 391 次
点击打开新窗口浏览全图

Tags: sebug , php

上一篇:javascript+XML+PHP+MYSQL实现的一个基础遍历
下一篇:Apache服务器配置安全规范Apache服务器的主要安全缺陷

相关文章

访客评论( 15 楼)

  1. #1 amxku
    2006-10-11, 23:40:41
    ajax中的node的东东不怎么会

    哪位朋友指点下哈,谢了先
  2. #2 ajax
    2006-10-11, 23:46:48
    http://www.infowe.com/ajax/info/zixun/200605189.html
  3. #3 ajax
    2006-10-11, 23:59:48
    http://www.okajax.com/
  4. #4 amxku
    2006-10-13, 19:48:44
    已经安全到了
  5. #5 ajax
    2006-10-14, 06:33:27
    <?php
    /****
    xajax通用分页类
    **适用于无刷新页面翻页
    **未提供注释,博君一笑~~
    ** @author : lino(luckfeng@gmail.com)
    ** @site : http://www.ypren.com
    ** @version : 0.2
    ** @date : 2006/2/16
    **/

    class Pager
    {
    var $url;
    var $countall;
    var $page;
    var $thestr;
    var $backstr;
    var $nextstr;
    var $pg;
    var $content;
    var $function;
    var $id;

    function Pager($countall,$countlist,$id,$function,$thePage)
    {
    // 参数分别为:总数,每页显示数,操作的ID,操作的方法,当前页

    $this->function = $function;
    $this->id = $id;
    if ($thePage==0 || $thePage=="")
    {
    $thePage = 1;
    }
    $this->pg = $thePage;
    $this->countall = $countall;
    if ($this->countall%$countlist!=0)
    {
    $this->page=sprintf("%d",$this->countall/$countlist)+1;
    }
    else
    {
    $this->page=$this->countall/$countlist;
    }
    if ($this->page<=10)
    {
    for ($i=1;$i<$this->page+1;$i++)
    {
    $this->thestr=$this->thestr.Pager::makepg($i,$this->pg);
    }
    }
    else
    {
    if ($this->pg<=5)
    {
    for ($i=1;$i<10;$i++)
    {
    $this->thestr=$this->thestr.Pager::makepg($i,$this->pg);
    }
    }
    else
    {
    if (6+$this->pg<=$this->page)
    {
    for ($i=$this->pg-4;$i<$this->pg+6;$i++)
    {
    $this->thestr=$this->thestr.Pager::makepg($i,$this->pg);
    }
    }
    else
    {
    for ($i=$this->pg-4;$i<$this->page+1;$i++)
    {
    $this->thestr=$this->thestr.Pager::makepg($i,$this->pg);
    }
    }
    }
    }
    $this->backstr = Pager::gotoback($this->pg);
    $this->nextstr = Pager::gotonext($this->pg,$this->page);
    $this->content = $this->backstr.$this->thestr.$this->nextstr." 共".$this->countall." 条,每页".$countlist."条,分".$this->page."页 当前第".$thePage."页";
    return $this->content;
    }

    function makepg($i,$pg)
    {
    if ($i==$pg)
    {
    return " ".$i."";
    }
    else
    {
    return " ".$i."";
    }
    }

    function gotoback($pg)
    {
    if ($pg-1>0)
    {
    $pg = $pg-1;
    return $this->gotoback=" 首页 上页";
    }
    else
    {
    return $this->gotoback="";
    }
    }

    function gotonext($pg,$page)
    {
    if ($pg < $page)
    {
    $pg = $pg+1;
    return " 下页 尾页";
    }
    else
    {
    return "";
    }
    }
    }
    ?>
  6. #6 ajax
    2006-10-14, 06:33:39
    http://www.xuchao.cn/?play=show&id=1241
  7. #7 ajax
    2006-10-14, 06:33:47
    http://www.51r.com/user2/ittime/archives/2006/137516.shtml
  8. #8 kiki
    2006-10-15, 23:04:47
    希望早点看到你的新作品
  9. #9 liking
    2006-10-16, 16:56:14
    看起来更完美了哈,希望可以快点发布
  10. #10 hztv
    2006-10-17, 12:57:01
    http://hztv.com.ru/?action=show&id=520
  11. #11 kiki
    2006-10-20, 17:41:23
    怎么都不见人了呢,
    人毛都没有了
  12. #12 流浪
    2006-10-20, 18:19:39
    他最近没多大机会没什么时间上网的拉 呵。。包涵下。。
  13. #13 kiki
    2006-10-20, 18:22:48
    哈哈,你咋这清楚呢,我晕唿唿,貌似咋地咋地了哦,哈哈

    哪天问问看,YY的,不老实哈
  14. #14 流浪
    2006-10-20, 19:25:39
    汗。。表误会。不过貌似你说话语气和习惯词有点象他呢 哈
  15. #15 s
    2006-10-24, 18:55:31
    http://searchwebservices.techtarget.com.cn/tips/115/2251115.shtml

发表评论

评论内容 (必填):