gpt4 book ai didi

javascript - 显示警报消息并重定向页面

转载 作者:行者123 更新时间:2023-11-28 14:25:55 25 4
gpt4 key购买 nike

我有以下代码。失败时,我需要收到警报已存在并重定向到注册页面。但是成功后我需要检查 session ,并根据 Angular 色 ID 我需要重定向页面,但在这种情况下警报和重定向没有发生......你能告诉我哪里错了

if ($referral_patient_id != NULL) {
echo "<script language='javascript'>
alert('Successfully Added');
if ($_SESSION['role_id'] != 6) {
echo 'window.location.href="../Laboratory_Home"';
} else {
echo 'window.location.href="../Billing_Home"';
} </script>";
} else {
echo "<script language='javascript'>
alert('Already Exists');
window.location.href = '../../LabAdd_Patients';
</script>";
}

最佳答案

<?php if ($referral_patient_id != NULL) { ?>
<script type='javascript'>
alert('Successfully Added');
<?php if ($_SESSION['role_id'] != 6) { ?>
window.location.href="../Laboratory_Home";

<?php } else { ?>
window.location.href="../Billing_Home";
<?php } ?>
</script>
<?php }else { ?>
<script type='javascript'>
alert('Already Exists');
window.location.href = '../../LabAdd_Patients';
</script>
<?php } ?>

试试这个家伙。

关于javascript - 显示警报消息并重定向页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53275967/

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