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('やあ、動作します!');
私は何を間違っていますか?