我已经设置了一个覆盖脚本,可以让我显示一个覆盖弹出窗口,可以这么说,它工作得很好,因为我可以通过按钮等调用它......但是我希望能够查看用户是否已经来到页面在他们的标题中存在 subid,如果没有,那么我希望覆盖出现。
这是需要从中调用叠加层的代码
if (isset($_GET['eid'])) {
if ($_GET['eid'] == ""){
// CALL THE overlay_choose_house from here
} else{
$estate_id = $_GET['eid'];
}
}
这是被调用的代码
<script>
$(document).ready(function(){
$('#overlay_choose_house').bind('click', function(event){
if (event.target == $('#overlay_choose_house').get(0))
overlay_choose_house();
});
});
</script>
感谢您的任何帮助