2014-06-14 45 views

回答

0

對於這一點,你必須使用JavaScript的提示功能,其提供了一個文本框從用戶所獲得的價值,你可以做一個Ajax請求斷絕更新數據庫中的新的金額後輸入值。

事情是這樣的: -

首先添加jQuery的文件在你的頁面。

<a href="javascript:void(0);" onClick="updateAmount(itemId);">Click here to update amount</a> 
<script> 
    function updateAmount(itemId){ 
     amount = prompt('Enter new amount', 0); 
     $.ajax({ 
      url: updateAmount.php, 
      data: {"amount": amount, "id": itemId}, 
      success: function(data){ 
       alert("Amount updated successfully."); 
      } 
     }); 
    } 
</script> 
1

爲了創建你想要的彈出式效果,你可以使用prompt(),它被描述爲here

使用:

function giveCredits(user) { 
    var amount = prompt('Please enter the amount of creidts you wish to give to ' + user,100); 
    SQLCreditfunction(user,amount); 
} 

您應該能夠創建所需的效果。 SQLCreditfunction將是一個將值插入數據庫的函數。