我有一个锚链接,点击它时我调用了一个 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>