if isset SESSION 显示 div
我在 jquery 中该怎么做,每 1 秒检查 isset SESSION user_message 中是否有任何内容,如果有则显示 #box,否则不显示。 谢谢
How do i do in jquery, to check if there's anything in isset SESSION user_message, each 1 seconds, and if there is then display #box else dont..
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
PHP 文件 (session.php):
JS 文件:
这尚未经过测试,但它应该可以满足您的要求。请注意,通常 AJAX 请求需要 XML 或 JSON,因此您可以按照您想要的方式重新格式化
session.php
文件。PHP file (session.php):
JS file:
This is untested, but it should do what you're looking for. Note that, typically, AJAX request expect XML or JSON, so you can reformat the
session.php
file the way you want.使用 PHP 回显 jQuery 命令:
如果设置了 $_SESSION['user_message'],则仅回显以下内容:
Use PHP to echo the jQuery command:
This will only echo the following if
$_SESSION['user_message']
is set:就这么简单:
或者您可以在指定时间使用
fadeIn
或fadeOut
。Simple as this:
Or you can use
fadeIn
orfadeOut
with specified time.