Phiên bản đầy đủ: jsB@nk » Thủ thuật » Kiểm tra trình duyệt nhanh chóng
URL: https://www.javascriptbank.com/speed-up-object-detection.html
Kiểm tra loại trình duyệt của khách đang dùng là việc làm cần thiết trong lập trình JavaScript. Công cụ này sẽ giúp bạn làm một cách nhanh chóng chuyện này để đưa ra các phương thức phù hợp từng tình huống.
Phiên bản đầy đủ: jsB@nk » Thủ thuật » Kiểm tra trình duyệt nhanh chóng
URL: https://www.javascriptbank.com/speed-up-object-detection.html
<script type="text/javascript"><!--/* Created by: Dean Edwards :: http://dean.edwards.name/Licensed under a Creative Commons License */var addEvent;if (document.addEventListener) { addEvent = function(element, type, handler) { element.addEventListener(type, handler, null); };} else if (document.attachEvent) { addEvent = function(element, type, handler) { element.attachEvent("on" + type, handler); };} else { addEvent = new Function; // not supported}//--></script><!-- This script downloaded from www.JavaScriptBank.com Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->