使用onclick按钮更新数据库信息

时间:2011-07-02 22:06:43

标签: php javascript mysql button onclick

我需要一个按钮onClick的帮助。

<button type="button" id="1" onclick="this.disabled=true; ^FUNCTION TO UPDATE^"> 
<button type="button" id="2" onclick="this.disabled=true; ^FUNCTION TO UPDATE^"> 
<button type="button" id="3" onclick="this.disabled=true; ^FUNCTION TO UPDATE^"> 

使用此代码我禁用了按下的按钮,但我还需要在发送id的数据库中更新信息,如下所示:

UPDATE reservation SET status='approved' WHERE id=^ID OF THE CLICKED BUTTON^

我需要将其加载到同一页面,而不是使用POSTGET发送。

2 个答案:

答案 0 :(得分:1)

使用ajax调用,例如:

$.get('update_reservation.php', {id: 1});

请参阅http://api.jquery.com/jQuery.get/了解详情。

答案 1 :(得分:0)

使用普通的javascript,您可以执行以下操作:

<script type="text/javascript">
<!--
var page = "dbupdate.php"; // hardcode this elsewhere out of sight

function update(target,data){
document.getElementById(target).innerHTML = 'sending...';
if (window.XMLHttpRequest) {
       req = new XMLHttpRequest();
       req.onreadystatechange = function() {ajaxDone(target);};
       req.open("POST", page, true);
       req.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
       req.send("data=" + data );
   // IE/Windows ActiveX version
  } else if (window.ActiveXObject) {
       req = new ActiveXObject("Microsoft.XMLHTTP");
    if (req) {
           req.onreadystatechange = function() {ajaxDone(target);};
           req.open("POST", page, true);
           req.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
           req.send("data=" + data );

       }
   }
}  

function ajaxDone(target) {
    // only if req is "loaded"
    if (req.readyState == 4) {
        // only if "OK"
        if (req.status == 200 || req.status == 304) {
           results = req.responseText;
            document.getElementById(target).innerHTML = results;
        } else {
           document.getElementById(target).innerHTML="ajax error:\n" +
            req.statusText;
        }
    }
}
// -->
</script>

对于输出,请确保您有一个id等于target的div。