HTTP_USER_AGENT

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Welcome to nginx!</title>
</head>
<body>
<h2>php $_SERVER['HTTP_USER_AGENT']</h2>
<p>
<?php
echo $_SERVER['HTTP_USER_AGENT'];
?>
</p>
<h2>js navigator.userAgent</h2>
<p>
<script>
document.write(navigator.userAgent);
</script>
<p>
<!--[if lte IE 6]>
<p>lte ie6</p>
<![endif]-->
<!--[if lte IE 7]>
<p>lte ie7</p>
<![endif]-->
<!--[if lte IE 8]>
<p>lte ie8</p>
<![endif]-->
<!--[if lte IE 9]>
<p>lte ie9</p>
<![endif]-->
</body>
</html>

posted @ 2014-08-07 22:58  哥,我还要  阅读(508)  评论(0编辑  收藏  举报