How to detect if JavaScript is disabled?

后端 未结 30 3257
暗喜
暗喜 2020-11-21 07:37

There was a post this morning asking about how many people disable JavaScript. Then I began to wonder what techniques might be used to determine if the user has it disabled.

相关标签:
30条回答
  • 2020-11-21 07:57

    I'd suggest you go the other way around by writing unobtrusive JavaScript.

    Make the features of your project work for users with JavaScript disabled, and when you're done, implement your JavaScript UI-enhancements.

    https://en.wikipedia.org/wiki/Unobtrusive_JavaScript

    0 讨论(0)
  • 2020-11-21 07:57

    Use a .no-js class on the body and create non javascript styles based on .no-js parent class. If javascript is disabled you will get all the non javascript styles, if there is JS support the .no-js class will be replaced giving you all the styles as usual.

     document.body.className = document.body.className.replace("no-js","js");
    

    trick used in HTML5 boilerplate http://html5boilerplate.com/ through modernizr but you can use one line of javascript to replace the classes

    noscript tags are okay but why have extra stuff in your html when it can be done with css

    0 讨论(0)
  • 2020-11-21 07:58

    Detect it in what? JavaScript? That would be impossible. If you just want it for logging purposes, you could use some sort of tracking scheme, where each page has JavaScript that will make a request for a special resource (probably a very small gif or similar). That way you can just take the difference between unique page requests and requests for your tracking file.

    0 讨论(0)
  • 2020-11-21 07:59

    This is the "cleanest" solution id use:

    <noscript>
        <style>
            body *{ /*hides all elements inside the body*/
                display: none;
            }
            h1{ /* even if this h1 is inside head tags it will be first hidden, so we have to display it again after all body elements are hidden*/
                display: block;
            }
        </style>
        <h1>JavaScript is not enabled, please check your browser settings.</h1>
    </noscript>
    
    0 讨论(0)
  • 2020-11-21 08:00

    This is what worked for me: it redirects a visitor if javascript is disabled

    <noscript><meta http-equiv="refresh" content="0; url=whatyouwant.html" /></noscript>
    
    0 讨论(0)
  • 2020-11-21 08:02

    The noscript tag works well, but will require each additional page request to continue serving useless JS files, since essentially noscript is a client side check.

    You could set a cookie with JS, but as someone else pointed out, this could fail. Ideally, you'd like to be able to detect JS client side, and without using cookies, set a session server side for that user that indicates is JS is enabled.

    A possibility is to dynamically add a 1x1 image using JavaScript where the src attribute is actually a server side script. All this script does is saves to the current user session that JS is enabled ($_SESSION['js_enabled']). You can then output a 1x1 blank image back to the browser. The script won't run for users who have JS disabled, and hence the $_SESSION['js_enabled'] won't be set. Then for further pages served to this user, you can decide whether to include all of your external JS files, but you'll always want to include the check, since some of your users might be using the NoScript Firefox add-on or have JS disabled temporarily for some other reason.

    You'll probably want to include this check somewhere close to the end of your page so that the additional HTTP request doesn't slow down the rendering of your page.

    0 讨论(0)
提交回复
热议问题