我想在'if'条件为真时打开一个弹出窗口 否则它会正常打开。
但是我使用的代码,无论条件是真还是假,都打开弹出窗口。
所以,帮助我们并给出你的意见
我使用的脚本。
<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
}
?>
答案 0 :(得分:0)
根据PHP文档, mysql_query() 将返回对结果的引用,而不是结果本身。
您必须在 mysql_query()返回的结果引用上使用其他方法,如 mysql_num_rows()或 mysql_fetch_assoc()。< / p>
例如:
$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)
顺便说一句:
LIMIT 1
以避免无用的处理,如果您的目标是只检查表 crm 中是否找到至少一个匹配给予 party_id 。答案 1 :(得分:0)
上面的代码将在加载文档时打开弹出窗口,因为它包含在$(document).ready函数中。尝试将其包含在一个函数中,并在条件为真时调用