Home > php教程 > php手册 > body text

php页面刷新

WBOY
Release: 2016-06-21 09:06:24
Original
921 people have browsed it

刷新|页面

refresh1.php新增后刷新显示:echo "";
exit;

 refresh.ihtml

function tb_addnew(id1,t1,t2,t3) { 插入一条记录
    var ls_t=document.all("table_add");
    maxrow=ls_t.rows.length;
    maxcell=ls_t.rows(0).cells.length;
    mynewrow=ls_t.insertRow();
   
    for (i=0; i        if (i==0) t0=id1; 必须显示列值id,才能实现即时刷新
        else if (i==1) t0=t1;
        else if (i==2) t0=t2;
        else if (i==3) t0=t3;
        else if (i==4) t0=" 
                        
                       ";
        else if (i==5) t0="";
        mynewcell=mynewrow.insertCell();
        //mynewcell.innerText=t0;   //在

  之间不包含html的内容
        mynewcell.innerHTML=t0;   //包含html的内容
    }

   
}

function tb_edit(sid) ...{
    open_dialog('refresh1.php?action=edit&sid='+sid,'topic_edit','600','600');
}

function tb_view(sid) ...{
    open_dialog('refresh1.php?action=view&sid='+sid,'topic_edit','600','600');
}

function tbrow_edit(sid,t1,t2,t3,t4) ...{
    var ls_t=document.all("table_add");
    maxrow=ls_t.rows.length;
    for (i=0; i        if (ls_t.rows(i).cells(0).innerHTML==sid) ...{
            ls_t.rows(i).cells(1).innerHTML=t1;
            ls_t.rows(i).cells(2).innerHTML=t2;
            ls_t.rows(i).cells(3).innerHTML=t3;   //只需显示到修改的列
            //ls_t.rows(i).cells(4).innerHTML=t4;
            break;
        }
    }
}

function tb_delete(sid) ...{
    if (confirm("确定要删除吗?")) ...{
        open_dialog('refresh1.php?action=delete&sid='+sid,'topic_delete','600','400');
        //var ls_t=document.all("table_add");
        //ls_t.deleteRow();
    }
}

function tbrow_delete(sid) ...{   
    var ls_t=document.all("table_add");
    maxrow=ls_t.rows.length;
    for (i=0; i        if (ls_t.rows(i).cells(0).innerHTML==sid) ...{
            //window.alert(i);
            ls_t.deleteRow(i);
            break;
        }
    }   
}

当需要两个刷新框架时,可写两次该代码,只是函数不用重名。

 



Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template