Je suis nouveau sur JS et je ne sais pas comment faire pour que cela fonctionne sur ma page. Ci-dessous est ce que j'ai. Comment dois-je faire cette alerte spectacle?
J'ai ajouté la source correctement mais je ne savais pas comment rendre l'alerte.
<!doctype html>
<html>
<head>
<title>Toast</title>
<link href="toastr.css" rel="stylesheet"/>
<script src="toastr.js"></script>
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script src="http://code.jquery.com/jquery-migrate-1.2.1.min.js"></script>
<script>
$(document).ready(function() {
//toastr.info('Are you the 6 fingered man?')
Command: toastr[success](" ", "Settings Saved!")
toastr.options: {
"debug": false,
"positionClass": "toast-top-right",
"onclick": null,
"fadeIn": 300,
"fadeOut": 1000,
"timeOut": 5000,
"extendedTimeOut": 1000
}
});
</script>
</head>
<body>
</body>
</html>
Toastr est un composant très agréable, et vous pouvez afficher des messages avec ces commandes:
// 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');
Si vous souhaitez fournir un titre au message toastr, ajoutez simplement un deuxième argument:
// for info - blue box
toastr.success('The process has been saved.', 'Success');
vous pouvez aussi changer le comportement par défaut en utilisant quelque chose comme ceci:
toastr.options.timeOut = 3000; // 3s
Voir plus sur le github du projet .
Un échantillon d'utilisation:
$(document).ready(function() {
// show when page load
toastr.info('Page Loaded!');
$('#linkButton').click(function() {
// show when the button is clicked
toastr.success('Click Button');
});
});
et un html:
<a id='linkButton'>Show Message</a>
Vous n'avez pas besoin de jquery-migrate. Résumant les réponses précédentes, voici un html de travail:
<html>
<body>
<a id='linkButton'>ClickMe</a>
<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>
<script type="text/javascript">
$(document).ready(function() {
toastr.options.timeOut = 1500; // 1.5s
toastr.info('Page Loaded!');
$('#linkButton').click(function() {
toastr.success('Click Button');
});
});
</script>
</body>
</html>
J'explore que je savais que le script jQuery devait être chargé pour qu'il ne fonctionne pas dans votre cas ... parce que le symbole $ mentionné dans le code ne comprend pas si vous ne chargez pas Jquery 1.9.1 au début ...
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script src="http://code.jquery.com/jquery-migrate-1.2.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>
Alors cela fonctionnera bien
Ajouter des fichiers CDN de toastr.css et toastr.js
<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>
function toasterOptions() {
toastr.options = {
"closeButton": false,
"debug": false,
"newestOnTop": false,
"progressBar": true,
"positionClass": "toast-top-center",
"preventDuplicates": true,
"onclick": null,
"showDuration": "100",
"hideDuration": "1000",
"timeOut": "5000",
"extendedTimeOut": "1000",
"showEasing": "swing",
"hideEasing": "linear",
"showMethod": "show",
"hideMethod": "hide"
};
};
toasterOptions();
toastr.error("Error Message from toastr");
Vous pouvez essayer Msg , une bibliothèque pour créer des fenêtres modales et des popups/toasts. C'est bien documenté et a beaucoup d'options.