簡體   English   中英

為什么我的警報未在成功呼叫中顯示

[英]Why is my alert not being displayed on success call

我試圖弄清為什么我的警報在代碼的“ function processResponse(data)”部分中沒有顯示。 我嘗試了各種回報; 選項,但仍然拒絕顯示。

如果有人可以指出我的錯誤,我將不勝感激。 非常感謝。

PS。 我知道發布的代碼中存在安全性問題,例如mysql_escape_string,但是所有安全性問題都會在網站上線之前插入。

jQuery代碼

<script type="text/javascript">

$(function() {

    $('#srcsubmit').click(function(e) {
        e.preventDefault();
        if ($('#srcBox').val() == '') {

            notif({
                type: "error",
                msg: "<b>ERROR:<br /><br />You must enter a search term</b><p>Click anywhere to close</p>",
                height: 99,
                multiline: true,
                position: "middle,center",
                fade: true,
                timeout: 3000

            });
            return false;
        }

        $("#submit").prop("disabled", true);
        $("#submit2").prop("disabled", true);
        $("#submit3").prop("disabled", true);
        var value = $('#srcBox').val();
        var dept = '<?php echo $_GET['dept ']; ?>';

        var qString = 'sub=' + encodeURIComponent(value) + '&dept=' + encodeURIComponent(dept);

        $.post('sub_db_handler.php', qString, processResponse);
    });

    function processResponse(data) {
        if (data === 'true') {

            alert('That box is not on the system'); <--- this is the problem
            return;
        }

        $('#srcBoxRslt').val(data);
    };
});


</script>

PHP后端

    <?php session_start(); ?>
    <?php

    $con = mysql_connect("localhost","root","");
    if(!$con) { die('Could not connect: ' . mysql_error()); }
    mysql_select_db("sample", $con);

    $dept = trim($_POST['dept']);
    $custref = trim($_POST['sub']);



    $result = mysql_query("SELECT * FROM boxes WHERE custref = '".$custref."'");
    $found = mysql_num_rows($result);

     if ($found == 0)
        {
            echo trim('true');

        } else {

    $query = "SELECT * FROM boxes WHERE department = '".$dept."' AND status = 1 AND custref = '".$custref."'";
    $result = mysql_query($query) or die(mysql_error());
    $row = mysql_fetch_array($result) or die(mysql_error());
    $r = $row['custref'];

    $str =  json_encode($r);
    echo trim($str, '"');

    }


        ?>

數據值不等於true因為有多余的空間來消除多余的使用.trim()

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM