0

我有这段代码是在用户按下按钮后获取数据库中的特定项目。如果找到该项目,我想通过 javascript 显示确认消息,但我不知道如何显示它。

从数据库中获取项目后

if(null!=mysqli_fetch_array($res)))
{
    echo ""; // how can I call the javascript code here ?
}

和下面的确认框

  <script type="text/javascript">
    function onConfirm()
    {
        return confirm("Display this item ?");        
    }
  </script>
4

2 回答 2

1

使用 jquery 和 ajax 从数据库中获取值:

<script src="http://code.jquery.com/jquery-1.7.2.min.js"></script>
$.get("ajax.php", function(data){

if(data != "0"){
if(confirm("Display this item ?"))
{

//do something

}
}

});

ajax.php:

//other db code here

if(null!=mysqli_fetch_array($res)))
{
echo "1"; 
}
else{
echo "0";
}
于 2012-05-14T15:01:47.093 回答
0

有很多方法可以解决这个问题。一个好方法是:

  • 向页面发送 ajax 请求
  • 该页面执行 mysql 的操作并返回(在 PHP的情况下为回显)消息
  • 在回调函数上使用简单的方式,例如alert()显示消息。
于 2012-05-14T15:04:03.253 回答