如何使用PHP弹出警报消息框?

时间:2012-12-13 01:27:37

标签: javascript php messagebox

如何使用PHP弹出警告消息框?

9 个答案:

答案 0 :(得分:236)

您可以使用Javascript:

// This is in the PHP file and sends a Javascript alert to the client
$message = "wrong answer";
echo "<script type='text/javascript'>alert('$message');</script>";

答案 1 :(得分:12)

创建警报功能

<?php
alert("Hello World");

function alert($msg) {
    echo "<script type='text/javascript'>alert('$msg');</script>";
}
?>

答案 2 :(得分:3)

我这样做了:

<?php 
$PHPtext = "Your PHP alert!";
?>

var JavaScriptAlert = <?php echo json_encode($PHPtext); ?>;
alert(JavaScriptAlert); // Your PHP alert!

答案 3 :(得分:2)

PHP呈现HTML和Javascript以发送到客户端的浏览器。 PHP是服务器端语言。这使得它可以执行诸如将某些内容插入服务器上的数据库之类的操作。

但是客户端的浏览器会呈现警报。你必须通过javascript来获取警报。

答案 4 :(得分:0)

在php命令之间使用jquery $警报

答案 5 :(得分:0)

见这个例子:

<?php
echo "<div id='div1'>text</div>"
?>

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8" />
    <title></title>
    <script src="js/jquery1.3.2/jquery.min.js"></script>

    <script type="text/javascript">
        $(document).ready(function () {
            $('#div1').click(function () {
                alert('I clicked');
            });
        });
</script>
</head>
<body>

</body>
</html>

答案 6 :(得分:0)

此.php文件内容将生成带有警报的valid html(您甚至可以删除@RequestMapping

<?php...?>

答案 7 :(得分:0)

您需要一些JS,只需在PHP代码中添加alert('Your message')即可实现。

请参见下面的示例

     <?php 

//my other php code here
        
        function function_alert() { 
              
            // Display the alert box; note the Js tags within echo, it performs the magic
            echo "<script>alert('Your message Here');</script>"; 
        } 
        
        ?> 

当您使用应该触发function_alert的路线访问浏览器时,您会在屏幕上看到带有消息的警报框。

更多信息,请访问https://www.geeksforgeeks.org/how-to-pop-an-alert-message-box-using-php/

答案 8 :(得分:-3)

您可以使用DHP执行此操作。它绝对简单,比脚本快。  只需写下alert('something'); 它不是编程语言,它就像一个点亮的jquery。你需要在顶部和底部需要dhp.php需要dhpjs.php。 目前它不是开源的,但是当它可以使用它时。这是我们的编程语言;)