Heim > Artikel > Web-Frontend > Reines JavaScript basierend auf dem notie.js-Plug-in zur Implementierung von Nachrichtenaufforderungseffekten_javascript-Fähigkeiten
Dieser Artikel stellt das Beispiel von reinem JavaScript vor, um den Nachrichtenaufforderungseffekt zu realisieren. Es handelt sich um ein auf notie.js basierendes Plug-in, das eine Warnmeldungsbox, ein Bestätigungsfeld und ein Nachrichtenfeld mit Eingaben erzeugen kann Ihre Referenz. Der spezifische Inhalt ist wie folgt
Rendering:
Implementierungscode:
HTML-Code:
<br><br><br><br><br><br> <article class="zzsc"> <div class="div-ext"> <div class="div-int"> <span>Test notie with these buttons:</span> <br> <button onclick="success();">Success</button> <button onclick="warning();">Warning</button> <button onclick="error();">Error</button><br> <button onclick="info();">Information</button> <button onclick="confirm();">Confirm</button> <button onclick="input();">Input</button> <br> </div> </div> </article>
JS-Code:
function success() { notie.alert(1, 'Success!', 2); } function warning() { notie.alert(2, 'Warning<br><b>with</b><br><i>HTML</i><br><u>included.</u>', 2); } function error() { notie.alert(3, 'Error.', 2); } function info() { notie.alert(4, 'Information.', 2); } function confirm() { notie.confirm('Are you sure you want to do that?<br><b>That\'s a bold move...</b>', 'Yes', 'Cancel', function () { notie.alert(1, 'Good choice!', 2); }); } function input() { notie.input('Please enter your email address:', 'Submit', 'Cancel', 'email', 'name@example.com', function (value_entered) { notie.alert(1, 'You entered: ' + value_entered, 2); }); }
Ich hoffe, dass dieser Artikel für alle hilfreich ist, die JavaScript-Programmierung lernen.