次のコードがあります。
<script>
$(function () {
Command: toastr["success"]("My name is Inigo Montoya. You killed my father. Prepare to die!")
});
</script>
ボックスが表示されますが、空白でテキストがありません。これを修正するにはどうすればよいですか? 上記の次のコマンドを追加しようとしました:
toastr.options = {
"closeButton": true,
"debug": false,
"newestOnTop": false,
"progressBar": false,
"positionClass": "toast-top-center",
"preventDuplicates": false,
"onclick": null,
"showDuration": "300",
"hideDuration": "1000",
"timeOut": "5000",
"extendedTimeOut": "1000",
"showEasing": "swing",
"hideEasing": "linear",
"showMethod": "fadeIn",
"hideMethod": "fadeOut"
}
ただし、ボックスを中央に配置するだけです。テキストを表示するにはどうすればよいですか?