1

我想在“如果”条件为真时打开一个弹出窗口,否则它会正常打开。

但是我使用的代码无论条件是真还是假都会打开弹出窗口。

所以,帮帮我,给你的意见

我使用的脚本。

<script>
$(document).ready(function() {  

        var id = '#dialog';

        //Get the screen height and width
        var maskHeight = $(document).height();
        var maskWidth = $(window).width();

        //Set heigth and width to mask to fill up the whole screen
        $('#mask').css({'width':maskWidth,'height':maskHeight});

        //transition effect     
        $('#mask').fadeIn(1000);    
        $('#mask').fadeTo("slow",0.8);  

        //Get the window height and width
        var winH = $(window).height();
        var winW = $(window).width();

        //Set the popup window to center
        $(id).css('top',  winH/2-$(id).height()/2);
        $(id).css('left', winW/2-$(id).width()/2);

        //transition effect
        $(id).fadeIn(2000);     

    //if close button is clicked
    $('.window .close').click(function (e) {
        //Cancel the link behavior
        e.preventDefault();

        $('#mask').hide();
        $('.window').hide();
    });     

    //if mask is clicked
    $('#mask').click(function () {
        $(this).hide();
        $('.window').hide();
    });     

});
</script>

CSS就在这里。

<style>
#mask {
  position:absolute;
  left:0;
  top:0;
  z-index:9000;
  background-color:#000;
  display:none;
}

#boxes .window {
  position:absolute;
  left:0;
  top:0;
  width:440px;
  display:none;
  z-index:9999;
  padding:20px;
  padding-top:0px;
}

#boxes #dialog {
  width:975px; 
  padding-top:0px;
  background-color:#ffffff;
   background-image: url(../Images/form_bg.png);
background-repeat: no-repeat;
}

</style>

和有条件的 div。

<?php
        $check_crm=mysql_num_rows(mysql_query("select * from crm where party_id='$_GET[party_id]'"));
        if($check_crm>0)
        {
            ?>
        <div id="boxes">
        <div id="dialog" class="window">
        <!-- content-->
        </div>
        </div>
        <?php
        }
        ?>
4

2 回答 2

0

根据 PHP 文档,mysql_query()将返回对结果的引用,而不是结果本身。

您将不得不对mysql_query()返回的结果引用使用mysql_num_rows()mysql_fetch_assoc()等其他方法。

例如:

$check_crm = mysql_query("select * from crm where party_id='".mysql_real_escape_string($_GET['party_id'])."' limit 1");
if (mysql_num_rows($check_crm) > 0)

顺便提一句:

  • 小心潜在的SQL 注入。在用户输入上至少使用mysql_real_escape_string(),或者更好地将变量绑定到查询。
  • 不鼓励使用旧的mysql_* PHP 函数。首选使用 PDO 库。检查像 Propel 或 Doctine 这样的 ORM。
  • 如果您的目标是仅检查在给定party_id的crm表中是否找到至少一个匹配项,则可以添加LIMIT 1到查询中以避免无用的处理。
于 2012-09-11T08:37:19.097 回答
0

上面的代码将在加载文档时打开弹出窗口,因为它包含在 $(document).ready 函数中。尝试将其包含在一个函数中,并在条件为真时调用

于 2012-09-11T08:38:37.310 回答