gpt4 book ai didi

javascript - 如何使用 java 脚本隐藏文本并显示另一个文本和由 php 触发的整个 java 脚本代码?

转载 作者:行者123 更新时间:2023-11-28 00:54:40 27 4
gpt4 key购买 nike

$_SESSION['MSG']="不正确的电子邮件 ID 和密码" 为红色。

5 秒后它将隐藏,然后我想在 5 秒后在同一位置以黄色显示稍后重试。 $_SESSION['try']="Try again later" 但它不会隐藏,直到页面没有重新加载或刷新:

<?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 ();
?>

最佳答案

试试这个

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>';
}

您使用 innerHTML更改 <div></div> 中的消息.

关于javascript - 如何使用 java 脚本隐藏文本并显示另一个文本和由 php 触发的整个 java 脚本代码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53013145/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com