有没有办法在 PHP 应用程序中使用 Toastr Alerts?我想使用 Toastr 通知显示成功和错误消息。是否有任何可用于 php 的库?javascript<script type='text/javascript'> toastr.info('User Registered..!');</script>如何仅使用 php 存档此表单?
1 回答
MM们
TA贡献1886条经验 获得超2个赞
首先,您必须在标题中添加 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
- 1 回答
- 0 关注
- 183 浏览
添加回答
举报
0/150
提交
取消