Windows XPで閲覧時のメッセージ
Windows XPで閲覧時にメッセージを表示
jQuery
$(function () {
// ユーザエージェント
var ua = navigator.userAgent;
// Windows XP判定
if (ua.match(/Windows NT 5\.1/i)) {
// メッセージを表示
$('body').append('<div id="alert">あなたは Windows XP をご利用中です。<br>Windows XPのサポートは2014年4月9日に終了しています。</div>');
// フィルタを加える
// $('img').addClass('useless');
}
});
JavaScript版
JavaScript
window.addEventListener('load', function() {
// ユーザエージェント
var ua = navigator.userAgent;
// Windows XP判定
if (ua.match(/Windows NT 5\.1/i)) {
var elemAlert = document.createElement('div');
elemAlert.setAttribute('id', 'alert');
elemAlert.appendChild(document.createTextNode('あなたは Windows XP をご利用中です。'));
elemAlert.appendChild(document.createElement('br'));
elemAlert.appendChild(document.createTextNode('Windows XPのサポートは2014年4月9日に終了しています。'));
document.body.appendChild(elemAlert);
}
});
サンプル(jQuery版)