CRUD框架 PhpGrid?看看是不是你想要的
往简单里整,自已写个样式替换也不麻烦吧

解决方案 »

  1.   

    两个框架不可以? frameset ....
      

  2.   

    jquery、extjs 不都有很好用的 datagrid 插件吗?你是想自己写?
    嗯,写起来也很简单
      

  3.   

    主画面
    <html>
    <head>
    <!--jquery -->
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.3/jquery.min.js"></script><script type="text/javascript">
    $(document).ready(function(){
        $('#s tr').click(function() {
            $.ajax({
                data : 'id='+this.id,
                url : 'jquery_server.php',
                type : 'post',
                da_taType : 'json',
                success : function(data){
                $('#view').html(data);
                }
            });
        
        });
    });</script></head>
    <body>
    <div style='width:50%;float:left'>
    <table id=s>
    <tr id=1><td>a</td></tr>    
    <tr id=2><td>b</td></tr>    
    <tr id=3><td>c</td></tr>    
    <tr id=4><td>d</td></tr>    
    </table>
    </div>
    <div id=view style='width:50%;float:left'>
    </div>
    </body>
    </html>
    jquery_server.php<?php
    $id = $_POST['id'];
    echo <<< HTML
    根据你的需要和传入的参数填表
    <table width=100 border=1>
    <tr><td>$id</td></tr>
    <tr><td>$id</td></tr>
    <tr><td>$id</td></tr>
    </table>
    HTML;