gpt4 book ai didi

带有 session 的 Javascript 来显示或隐藏内容

转载 作者:行者123 更新时间:2023-12-03 12:26:09 26 4
gpt4 key购买 nike

我正在做电影网站。

我要求“基本”脚本来检查特定用户是否已登录或无法访问视频播放器。

问题陈述:目前,即使用户未登录,它也会显示,我想更改它。

到目前为止,我想出了这段代码,但它总是返回 true,因为我的 var 将 $_Session 的值作为文本。

  <p>Click the check user:</p>

<button onclick="checkuser()">Try it</button>

<p id="demo"></p>

<script>

function checkuser()
{
var greeting;
var userlog = '<%= Session["SessionKey"] %>'; // dreamweaver error here


if (userlog==null)
{
greeting = "Bye"; // here - i will not show content
}
else {
greeting ="Go ahead"; // here - i will show content
}
document.getElementById("demo").innerHTML = greeting;
}
</script>

最佳答案

您正在检查是否 null这永远不会是真的。如果<%= Session["SessionKey"] %>是空的userlog将被设置为空 string而不是null .

尝试...

if (userlog == '')

关于带有 session 的 Javascript 来显示或隐藏内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24197938/

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