$.browser
- version : 버전 정보(렌더링 엔진 버전임)
- msie : IE 사용시 true
- mozilla : FireFox
- safari
- opera
01.Browser.htm |
<html xmlns="http://www.w3.org/1999/xhtml"> <head>
<title>브라우저 정보 얻기</title>
<script src="../jQuery/jquery-1.3.2-vsdoc2.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function()
{ var
result = ""; //$.browser의 모든 속성 출력 jQuery.each(jQuery.browser, function(i, val) { result += i + ":" + val + "\n"; }); alert(result); //브라우저 확인 if
($.browser.msie) { alert("IE 웹 브라우저"); } else
{ alert('다른 웹 브라우저'); }
});
</script> </head> <body> </body> </html> |
결과화면 |
[그림68-1] |
'jQuery | javascript | CSS' 카테고리의 다른 글
70.jQuery - $.noConflict() ( 10.Utileties ) (0) | 2009.11.17 |
---|---|
69.jQuery - 양쪽 공백 제거 함수 ( 10.Utileties ) (0) | 2009.11.17 |
-- 현재 까지의 jQuery 소스7 -- (0) | 2009.11.17 |
67.jQuery - $.ajaxSetup()으로 $.ajax() 단순화 ( 09.Ajax ) (0) | 2009.11.17 |
66.jQuery - getJSON 대체 ajax ( 09.Ajax ) (0) | 2009.11.17 |
Comments