我想使用jquery
或创建PHP
功能Javascript
:
加载网站后,在带有关闭按钮的标题上显示弹出框,当单击关闭按钮时,弹出窗口关闭。如果未单击关闭按钮,则该弹出窗口将显示在网站的所有页面中。
你能给我建议吗?我对此一无所知。
我想使用jquery
或创建PHP
功能Javascript
:
加载网站后,在带有关闭按钮的标题上显示弹出框,当单击关闭按钮时,弹出窗口关闭。如果未单击关闭按钮,则该弹出窗口将显示在网站的所有页面中。
你能给我建议吗?我对此一无所知。
试试这个 -演示
单击按钮时,我们将display
fieldset 的属性设置为none
,因此不显示。
编辑:
按照你在你的php页面中给出的链接试试这个。
<?php session_start();?>
<html>
<head>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js"></script>
<script>
//jquery code
$(document).ready(function(){
$('#close_popup').click(function(){
$('#header').css('display','none');
$.post("test.php");
});
})
</script>
</head>
<body>
<div id="header" style="width:100%;top:0;<?php if(isset($_SESSION['isHeaderClosed']) && $_SESSION['isHeaderClosed'] == true) echo 'display:none;'; ?>">
content <input type="button" id="close_popup"/>
</div>
</body>
</html>
(在所有页面中放置 session_start()、div 标头和 jquery 代码)。
在新页面 test.php
<?php
session_start();
$_SESSION['isHeaderClosed']=true;
?>