繁体   English   中英

当JQuery滑块中的值更改时运行MySQL查询

[英]Run MySQL query when value in JQuery slider changes

我希望每次用户完成更改屏幕上滑块的位置时都运行一个SQL查询。 例如,假设我将滑块设置为1,那么我希望检索ID也为1的所有行。 我希望在您滑过滑块时在屏幕上更新此信息。

我正在使用JQueryUI滑块。 这是我正在使用的代码。 我能做到的最好方法是什么?

<!doctype html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <title>jQuery UI Slider - Vertical slider</title>
    <link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
    <script src="../../jquery-1.9.1.js"></script>
    <script src="../../ui/jquery.ui.core.js"></script>
    <script src="../../ui/jquery.ui.widget.js"></script>
    <script src="../../ui/jquery.ui.mouse.js"></script>
    <script src="../../ui/jquery.ui.slider.js"></script>
    <link rel="stylesheet" href="../demos.css">
    <script>
    $(function() {
        $( "#slider-vertical" ).slider({
            orientation: "vertical",
            range: "min",
            min: 0,
            max: 100,
            value: 60,
            slide: function( event, ui ) {
                $( "#amount" ).val( ui.value );
            }
        });
        $( "#amount" ).val( $( "#slider-vertical" ).slider( "value" ) );
    });
    </script>
</head>
<body>

<p>
    <label for="amount">Volume:</label>
    <input type="text" id="amount" style="border:0; color:#f6931f; font-weight:bold;" />
</p>

<div id="slider-vertical" style="height:200px;"></div>

<div class="demo-description">
<p>Change the orientation of the slider to vertical.  Assign a height value via <code>.height()</code> or by setting the height through CSS, and set the <code>orientation</code> option to "vertical."</p>
</div>
</body>
</html>

非常感谢 :)

slide功能中,您需要向服务器发出ajax请求。 该请求显然将取决于您的应用程序的设置方式,但是在该应用程序中,您可以对所需的数据运行查询,然后将查询的结果返回给ajax调用。 然后,您可以根据自己的意愿做任何事情。 因此,例如,我将执行以下操作:

slide: function(event, ui) {
    $.get({
        url: "/app/address?id=" + ui.value,
        success: function(data, status, xhr) {
            ... Handle response here ...
        }
    });
}

我同意@vlzvl,但在slide方法上运行它并不是一个好主意。 更改方法会更好,因为它将大大减少ajax请求的数量,因为它仅在停止滑动时才触发,而不是在滑块的每次移动时才触发

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM