dtxzwdl08169 2018-10-26 16:45 采纳率: 0%
浏览 39
已采纳

如何使用java脚本隐藏文本并通过php显示另一个文本和整个java脚本代码触发器?

$_SESSION['MSG']="Incorrect email id and password" is in red color.

After 5 sec it will hide and after that I want to show Try again later in yellow color at same place after 5 sec. $_SESSION['try']="Try again later" but it will not hide until page is not reload or refresh:

<?php
session_start();
if(isset($_SESSION['MSG'])){
echo '<div  id="incorrect">' . $_SESSION['MSG'] .  '</div><script 
type="text/javascript">  
function showIt() {  
document.getElementById("incorrect").style.visibility = "hidden";  
}  
setTimeout("showIt()", 5000); 
</script>';
}
unset ($_SESSION['MSG']); 
session_destroy ();
?>
  • 写回答

1条回答 默认 最新

  • douweidao3882 2018-10-26 17:18
    关注

    Try this

    if(isset($_SESSION['MSG'])){
        echo '<div id="incorrect">'.$_SESSION['MSG'].'</div><script type="text/javascript">
        document.getElementById("incorrect").style.cssText = "background: red";
        function showIt() {
            document.getElementById("incorrect").style.visibility = "hidden";  
        }
        setTimeout("showIt()", 5000);
        function showIt() {
            document.getElementById("incorrect").style.cssText = "background: yellow";
            document.getElementById("incorrect").style.visibility = "visible";
            document.getElementById("incorrect").innerHTML = "'.$_SESSION["try"].'";
        }
        </script>';
    }
    

    You use the innerHTML to change the message within the <div></div>.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 乌班图ip地址配置及远程SSH
  • ¥15 怎么让点阵屏显示静态爱心,用keiluVision5写出让点阵屏显示静态爱心的代码,越快越好
  • ¥15 PSPICE制作一个加法器
  • ¥15 javaweb项目无法正常跳转
  • ¥15 VMBox虚拟机无法访问
  • ¥15 skd显示找不到头文件
  • ¥15 机器视觉中图片中长度与真实长度的关系
  • ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
  • ¥15 java 的protected权限 ,问题在注释里
  • ¥15 这个是哪里有问题啊?