运行mysqli命令onclick的html href链接

时间:2014-09-26 18:57:34

标签: php html mysqli

我在表格中有一个链接到一个小工具提示的链接。

<th><a href="#" class="tooltip">Reg NSB$

这样可以正常使用,但是当我点击时,我希望通过该列访问该表的链接(我看到的Web表中的一个常见功能...)我最初的想法是放那里有一个onclick事件,如下:

<th><a href="#" class="tooltip" onclick="<?php mysqli_query($con, "SELECT * FROM report WHERE PMName = '$PMSelection' AND REGNSB <> 0.000 ORDER BY RegNSB DESC Limit $LimitStart,$LimitItems"); ?>">Reg NSB$

我环顾四周但是当我点击一个&#34;链接&#34;时,我无法找到一种方法来完成mysqli查询的运行。

谢谢!

1 个答案:

答案 0 :(得分:1)

您可以尝试以下操作:只要用户点击该表标题,就可以使用jQuery向Web服务器发送AJAX请求:

$(".tooltip").click({function(){
    $.ajax({
            type: "POST",
            url: "server/database.php",  //Set the correct path to the php-file residing on the server here
            data: {
                //Set any data you need to send to the server here
            },
            success : function(data){
                //Called when server responded with success-code
            },
            error : function(XMLHttpRequest, textStatus, errorThrown) {
                //Called when server responded with error-code
            }
        })
    });

不要忘记将此代码包装在document.ready() - jQuery的处理程序中。有关异步调用的更多信息,请查看http://api.jquery.com/jquery.ajax/