Javascript checks whether the browser has enabled the XX function, javascriptxx
Checks whether the browser supports the cookie Function
<Script> if (navigator. cookieEnabled) {document. write ("your browser supports cookie function! ");} Else {document. write (" your browser does not support cookies! ") ;}</Script>
Check whether Java support is enabled in the browser
<Script type = "text/javascript"> document. write ("method of the navigator object" + "<br>"); if (navigator. javaEnabled () {document. write ("the browser supports and enables the Java method! "); // Prompt that the user supports the Java method} else {document. write (" the browser does not support or does not enable the Java method! "); // Prompt that the user does not support Java Methods} </script>
Current browser Information
<Script type = "text/javascript"> with (document) {write ("your browser information: <ol>"); write ("<li> code: "+ navigator. appCodeName); write ("<li> name:" + navigator. appName); write ("<li> Version:" + navigator. appVersion); write ("<li> language:" + navigator. language); write ("<li> compilation platform:" + navigator. platform); write ("<li> User header:" + navigator. userAgent) ;}</script>
The above is all the content of this article. I hope you will like it.