猿问

如何在 PHP 中使用 Toastr 警报?

有没有办法在 PHP 应用程序中使用 Toastr Alerts?我想使用 Toastr 通知显示成功和错误消息。是否有任何可用于 php 的库?


javascript


<script type='text/javascript'>

   toastr.info('User Registered..!');

</script>

如何仅使用 php 存档此表单?


呼啦一阵风
浏览 184回答 1
1回答

MM们

首先,您必须在标题中添加 Toastr CSS、JS 和 jquery。<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script><link href="https://cdnjs.cloudflare.com/ajax/libs/toastr.js/2.0.1/css/toastr.css" rel="stylesheet"/><script src="https://cdnjs.cloudflare.com/ajax/libs/toastr.js/2.0.1/js/toastr.js"></script>然后,您可以随时随地使用 Toastr 警报。您可以将以下方法用于 PHP 应用程序。echo '<script type="text/javascript">toastr.success('Have Fun')</script>';更多信息:https : //github.com/CodeSeven/toastr
随时随地看视频慕课网APP
我要回答