- Xu
- 755,853,847
10698
1
Trình duyệt UCBrowser chặn quảng cáo hiển thị, dưới đây là code detect và block trình duyệt này.
File checkit. Js download tại đây: checkit. Js
Thư viện checkit. Js có thể nhận dạng được các trình duyệt sau:
Chrome() : Google Chrome
Firefox() : Mozilla Firefox
Opera() : Opera
Safari() : Apple Safari
YandexBrowser() : Yandex. Browser
Vivaldi() : Vivaldi
MSIE.Any() : Any MS browsers
MSIE.V5() : IE 5
MSIE.V6() : IE 6
MSIE.V7() : IE 7
MSIE.V8() : IE 8
MSIE.V9() : IE 9
MSIE.V10() : IE 10
MSIEMobile() : MS Internet Explorer Mobile
OperaMini() : Opera Mini
UCBrowser() : UC Browser
webOS() : WebOS Browser
WebKit() : WebKit
Nhận dạng hệ điều hành trình duyệt
Android() : Android
IOS (): Apple iOS
BlackBerry() : BlackBerry
WindowsPhone() : Windows Phone
WebOS() : WebOS
Phát hiện tính năng của trình duyệt
Html5() : Html5
Css3() : Css3
Flash() : Adobe Flash player (install, enabled)
Touch() : Touch events
File checkit. Js download tại đây: checkit. Js
Mã:
<script src="js/checkit.min.js"></script>
<script>
$(document).ready(function() {
if (checkit.Browser.UCBrowser()) {
$('#link-view').replaceWith('<a href="https://dembuon.vn">Vui lòng sử dụng Google Chrome để truy cập!</a>');
}
else {
return true;
};
});
</script>
Thư viện checkit. Js có thể nhận dạng được các trình duyệt sau:
Chrome() : Google Chrome
Firefox() : Mozilla Firefox
Opera() : Opera
Safari() : Apple Safari
YandexBrowser() : Yandex. Browser
Vivaldi() : Vivaldi
MSIE.Any() : Any MS browsers
MSIE.V5() : IE 5
MSIE.V6() : IE 6
MSIE.V7() : IE 7
MSIE.V8() : IE 8
MSIE.V9() : IE 9
MSIE.V10() : IE 10
MSIEMobile() : MS Internet Explorer Mobile
OperaMini() : Opera Mini
UCBrowser() : UC Browser
webOS() : WebOS Browser
WebKit() : WebKit
Nhận dạng hệ điều hành trình duyệt
Android() : Android
IOS (): Apple iOS
BlackBerry() : BlackBerry
WindowsPhone() : Windows Phone
WebOS() : WebOS
Phát hiện tính năng của trình duyệt
Html5() : Html5
Css3() : Css3
Flash() : Adobe Flash player (install, enabled)
Touch() : Touch events
Last edited by a moderator:

