在此代码中,警告框不起作用。我想重定向页面并使用alertbox显示消息。我该如何解决?
if($stmt){
?>
<script type="text/javascript">
alert("Package Successfully Booked..");
</script>
<?php
header("location:javascript://history.go(-1)");
}
?>
答案 0 :(得分:0)
您可以使用Windows加载功能提醒用户。
window.onload = function () {
alert('Package Successfully Booked!');
}
或者你可以这样做
<html>
<head>
<script>
function showAlert()
{
alert("Package Successfully Booked!");
}
</script>
</head>
<body onload="showAlert()">
</body>
</html>