求哥哥 姐姐赐教!!!!

解决方案 »

  1.   

    根据你的需求,可以使用AJAX方式来实现。
      

  2.   

    js可以做
    <HTML>
     <HEAD>
      <TITLE> New Document </TITLE>
      <META NAME="Generator" CONTENT="EditPlus">
      <META NAME="Author" CONTENT="">
      <META NAME="Keywords" CONTENT="">
      <META NAME="Description" CONTENT="">  <script>
    function showInfo(trId){
    document.getElementById('title').value=document.getElementById('title_'+trId).value;
    document.getElementById('score').value=document.getElementById('score_'+trId).value;
    document.getElementById('sendPer').value=document.getElementById('sendPer_'+trId).value;
    }
      </script>
     </HEAD> <BODY>
      <table BORDER=1>
    <tr><th>标题</th>
    <th>分数</th>
    <th>发帖人</th>
    </tr>
    <tr onclick="showInfo(0)">
    <td>
    web上的消息提示 [Web 开发] 
    <input type="hidden" id="title_0" value="web上的消息提示 [Web 开发]">
    </td>
    <td>
    40
    <input type="hidden" id="score_0" value="40">
    </td>
    <td>
    fushizheiphone5 
    <input type="hidden" id="sendPer_0" value="fushizheiphone5">
    </td>
    </tr>
    <tr onclick="showInfo(1)">
    <td>
    JAVA的心 [Java SE] 
    <input type="hidden" id="title_1" value="JAVA的心 [Java SE] ">
    </td>
    <td>
    20 
    <input type="hidden" id="score_1" value="20">
    </td>
    <td>
    x19881216 
    <input type="hidden" id="sendPer_1" value="x19881216">
    </td>
    </tr>
      <table>
      <br>
      <br>
      <br>
      <table>
      <caption>展示信息</caption>
    <tr>
    <td>标  &nbsp;题:<INPUT ID="title" size=30px/></td>
    </tr>
    <tr>
    <td>分  &nbsp;数:<INPUT ID="score" size=30px/></td>
    </tr>
    <tr>
    <td>发帖人:<INPUT ID="sendPer" size=30px/></td>
    </tr>
      <table>
     </BODY>
    </HTML>
      

  3.   

    javascript可以做了,Jquery很简单的~
      

  4.   

    恩,jquery更简单,这个很麻烦