ポップアップボタンをクリックした後、Webページにテキストを表示したいと思います。しかし、うまくいかない、何か提案はありますか?
私は JavaScript の専門家ではありませんが、学んでいます。
<html>
<head>
<script type="text/javascript">
var showMessage = "";
window.onload = function(){
if (confirm("Your Details have been Saved.")) {
showMessage = "Please wait .. going to viewProfile";
window.location.assign("viewProfile.php");
} else {
showMessage = "Please wait ..";
window.location.assign("editProfile.php");
}
}
</script>
</head>
<body id="save-profile-page">
<script type="text/javascript">
document.writeln(showMessage);
</script>
</body>
</html>
何らかの理由でメッセージが表示されません。助けてください。