Toastrを使用して通知メッセージを作成します。私の通知メッセージはショーですが、私はオプションを使用することはできません、私はいくつかのオプションを入れても動作しません。Toastrの「オプション」が機能しない
$('#editButton').click(function() {
toastr.success('System successfully saved');
toastr.options.timeOut = 5000;
toastr.options.positionClass = toast - top - center;
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/js/toastr.min.js"></script>
<link href="//cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/css/toastr.min.css" rel="stylesheet">
<button class="button" id="editButton" type="submit" aria-hidden="true">Edit</button>
クールな作品です。たぶんあなたは知っている、どのように私はこの通知にスタイルを追加できますか?例:bg-color – Maksims
トーストは 'toast-warning'、' toast-info'などのタイプに応じてCSSクラスを持っています。スタイルシートのこれらのクラスのCSSをオーバーライドするだけです。 – JamesT
ありがとう! – Maksims