gpt4 book ai didi

javascript - 如何使用 toastr ?

转载 作者:行者123 更新时间:2023-12-02 16:54:28 25 4
gpt4 key购买 nike

我喜欢用 toastr 做的事情,但我似乎无法让它发挥作用。

来自官方页面...

(1) Link to toastr.css
(2) Link to toastr.js
(3) Use toastr to display a toast for info, success, warning or error
To install toastr, run the following command in the Package Manager Console
Install-Package toastr

我下载了 NuGet 的命令行版本并输入 install toastr 并成功安装,(虽然我不知道它实际上做了什么......)然后,在我的页面 test.php,我有以下代码:

<html>
<head>
<link rel="stylesheet" href="/toastr.css">
<script type="text/javascript" src="/toastr.js"></script>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>
<script type="text/javascript" src="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
</head>

<body>
toastr.info('Hey - it works!');
</body>

网站本身说这非常简单......

// Display an info toast with no title

toastr.info('Are you the 6 fingered man?')

但是当我执行该页面时,我看到的只是字面意思:

toastr.info('嘿 - 它有效!');

我做错了什么?

最佳答案

您可以在关闭正文标记之前添加脚本标记,并且在有效的 javascript 范围中使用它。

.. all html page

<script>

$(document).ready(function() {

// show when page load
toastr.info('Hey - it works!');

});

</script>

</body>
</html>

你还有其他方法,

// for success - green box
toastr.success('Success messages');

// for errors - red box
toastr.error('errors messages');

// for warning - orange box
toastr.warning('warning messages');

// for info - blue box
toastr.info('info messages');

关于javascript - 如何使用 toastr ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26289041/

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