<html>
<script>
function dectectDotnet(){
var ag = navigator.userAgent;
if (ag.indexOf("IE") == -1){
return false;
}
if (ag.indexOf("NET CLR") == -1){
return false;
}
if (ag.indexOf("NET CLR 2") != -1){
return true;
}
}
</script>
<body>
<script>
var r = dectectDotnet();
if (r != true){
var a = confirm(".NET 2.0 런타임이 필요합니다.\r\n설치하시겠습니까?");
if (a){
window.open("http://www.microsoft.com/downloads/details.aspx?FamilyID=0856eacb-4362-4b0d-8edd-aab15c5e04f5&DisplayLang=ko");
}
}
</script>
<body>
</html>
불펌 방지 코드 (0) | 2013.11.11 |
---|---|
Javascript에서 IME 설정값 조정하기 (0) | 2013.07.24 |
javascript trim 구현 (0) | 2012.08.18 |
javascript 정규식 (0) | 2012.07.12 |
JavaScript 로 탭 구현하기 (0) | 2012.07.06 |