Home >Database >Mysql Tutorial >JavaScript学习进阶(2)

JavaScript学习进阶(2)

WBOY
WBOYOriginal
2016-06-07 15:00:391168browse

欢迎进入Java社区论坛,与200万技术人员互动交流 >>进入 本例子代码用来实现浏览器类型判断。 html head title浏览器类型判断/title /head body script type="text/javascript" document.write("浏览器类型:"+navigator.appName+"/br;浏览器版本:"+navigat

欢迎进入Java社区论坛,与200万技术人员互动交流 >>进入

  本例子代码用来实现浏览器类型判断。

  

  

  

浏览器类型判断

  

  

  

  document.write("浏览器类型:"+navigator.appName+";浏览器版本:"+navigator.appVersion);

  document.write("");

  document.write("");

  if(navigator.appName=="Microsoft Internet Explorer")

  {

  document.write("您使用的是IE浏览器");

  }

  else

  {

  document.write("您使用的不是IE浏览器");

  }

  

  

  

  附浏览器的详细信息:

  浏览器:navigator.appName

  浏览器版本:navigator.appVersion

  代码:navigator.appCodeName

  平台:navigator.platform

  Cookies 启用:navigator.cookieEnabled

  浏览器的用户代理报头:navigator.userAgent

JavaScript学习进阶(2)

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn