»
Tiếng AnhTiếng PhápTiếng Việt

In - Kiểm tra vòng lặp của hộp thoại - JavaScriptBank.com

Phiên bản đầy đủ: jsB@nk » Linh tinh » Kiểm tra vòng lặp của hộp thoại
URL: https://www.javascriptbank.com/alert-box-protection.html

Kiểm tra vòng lặp của hộp thoại © JavaScriptBank.comHiệu ứng sẽ kiểm tra vòng lặp của hộp thoại thông báo alert() qua 50 lần lặp. Mỗi năm lần kiểm tra thì bạn sẽ có được sự chọn lựa thoát hay tiếp tục kiểm tra.

Phiên bản đầy đủ: jsB@nk » Linh tinh » Kiểm tra vòng lặp của hộp thoại
URL: https://www.javascriptbank.com/alert-box-protection.html



JavaScript
<script type=text/javascript>//Created by: Benjamin Joffe :: http://www.abrahamjoffe.com.au/ */(function(){  var a=window.alert, c=0;  window.alert=function(q){    // Change the number below to the number of alert boxes to display before the warning is given.    if (++c%5==0) {      if (!confirm(q+'\nThere have been '+c+' alert boxes, continue displaying them?')) window.alert=function(){};    } else a(q);  }})();// This is only a test case. You can removed it.function testing() {for (var i=1; i<50; i++) {  alert('This is an annoying loop of 50 alerts.\nEvery 5th alert you will have an option to exit.\n\n'+i);}}</script><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->


HTML
<input type="submit" value="Press to test" onclick="testing();"><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->