gpt4 book ai didi

php - 在 php 中回显 jquery 警报弹出窗口

转载 作者:行者123 更新时间:2023-12-01 08:06:09 24 4
gpt4 key购买 nike

我想在满足 PHP 中的某些条件时显示弹出警报框。像这样的东西:

  echo "<script type="text/javascript"> alert('bleh'); </script>";

除了使用自定义 jquery 警报框。这可能吗?

我尝试过类似的方法:

  echo "<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
<link rel="stylesheet" href="/resources/demos/style.css" />
<script>
$(function() {
$( "#dialog-message" ).dialog({
modal: true,
buttons: {
Ok: function() {
$( this ).dialog( "close" );
}
}
});
});
</script>";

但它给了我一种奇怪的效果。不弹出。

感谢您的关注。

最佳答案

echo <<<EOD
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
<link rel="stylesheet" href="/resources/demos/style.css" />
<script>
$("#dialog-message").dialog({
modal: true,
buttons: {
Ok: function() {
$( this ).dialog( "close" );
}
}
});
</script>
EOD;

关于php - 在 php 中回显 jquery 警报弹出窗口,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16532338/

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