2016-01-06 47 views
-1

請回答以下問題充分利用數據庫中的值上選擇下拉菜單中的文本框

我想上選擇的選項,從數據庫中的信息,並顯示相關的選擇選項相應

<table border="1" class="form" id="dataTable"> 
      <tbody> 
       <tr class="vd_bg-green vd_white" id='row_0'> 
        <td><input name="chk" type="checkbox"></td> 
        <td><select id="product_name" name="product_name" oninput= 
        "calculate('row_0')" required="" style="width: 180px; color: black"> 
        <option>//options from database</option> 
        </select></td> 
        <td><input id="description" maxlength="70" name="description" oninput= 
        "calculate('row_0')" required="" style="width: 260px; color: black" type= 
        "text"></td> 
        <td><input id="price" name="price" oninput="calculate('row_0')" required="" 
        style="width: 80px; color: black" type="text"></td> 
        <td><input id="quantity" name="quantity" oninput="calculate('row_0')" 
        required="" style="width: 40px; color: black" type="text"></td> 
        <td><input id="disc_rate" name="disc_rate" oninput="calculate('row_0')" 
        required="" style="width: 40px; color: black" type="text"></td> 
        <td><input id="total_pro" name="total_pro" onchange="calculate('row_0')" 
        readonly="readonly" style="width: 80px; color: black" type="text"></td> 
       </tr> 
      </tbody> 
     </table> 
+1

你有沒有嘗試過從你身邊?請在這裏分享一些代碼。 –

+0

我在jsp上做它 – optimus

+0

是的,我已經嘗試 – optimus

回答

0
的值

您可以開始學習ajax和服務器端腳本。創建一個服務器端代碼。通過ajax將選定的值傳遞給它。從數據庫中獲取結果。在文本框中顯示結果。

+0

但這裏的行是動態創建的,我需要在其中進行計算 – optimus

+0

你可以在jsp和ajax中共享一些代碼嗎? – optimus

+0

@optimus你可以在服務器端做計算。對不起,我不能。您無法想了解這些主題:PHP,AJAX,SQL,jQuery.ajax,JS –

相關問題