gpt4 book ai didi

javascript - 无法在超链接点击时显示警报

转载 作者:行者123 更新时间:2023-11-28 02:15:15 26 4
gpt4 key购买 nike

我有一个 anchor 链接,单击它时我调用一个 JavaScript 函数,并在其中使用 if-else。如果条件为真,则可以正常访问链接。但如果条件为假,我正在向用户显示警报。但我的警报不起作用。

 <script type="text/javascript" language="javascript">

function getVal(fid) {

if (fid != null || fid != undefined || fid != "")
window.location = "http://yatra.eresolute.com/Airline/AirPrice.aspx?fid=" + fid.toString();
else
alert("Flight has no ID!");

}

</script>

最佳答案

你误导了

if (fid != null || fid != undefined || fid != "")

您应该使用 && 而不是 ||

为什么?

因为 || 表示,并且 fid 在任何情况下都不能为 null、未定义以及空字符串同时。在你的代码中,你是这么说的

if it's not null OR not undefined OR an empty string, then redirect

您的这 3 项验证必须是肯定的。所以,有 2 个选择:

if (fid != null && fid != undefined && fid != "") {window.location...}else{alert(...)}

或者

if (fid == null || fid == undefined || fid == "") {alert(...)}else{window.location...}

关于javascript - 无法在超链接点击时显示警报,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16494927/

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