How does $(document).ready() work in IE 8?

后端 未结 6 2057
暗喜
暗喜 2020-12-11 03:16

I\'ve recently installed IE 8 and can\'t seem to get the jquery $(document).ready event to fire. Are there any special considerations that I\'m missing? Litterally, this i

相关标签:
6条回答
  • 2020-12-11 03:35

    Try turning this.

    <script type="text/javascript" src="~/Scripts/jquery-1.3.2.js" />
    

    Into this

    <script type="text/javascript" src="~/Scripts/jquery-1.3.2.js"></script>
    
    0 讨论(0)
  • 2020-12-11 03:35
    $(document).ready()
    

    Not work in IE8 I find a code sample from this link https://plainjs.com/javascript/events/running-code-when-the-document-is-ready-15/ It is working with Jquery 1.10.2

    	function run() {
        // do something
        alert('working');
    }
    
    // in case the document is already rendered
    if (document.readyState!='loading') run();
    // modern browsers
    else if (document.addEventListener) document.addEventListener('DOMContentLoaded', run);
    // IE <= 8
    else document.attachEvent('onreadystatechange', function(){
        if (document.readyState=='complete') run();
    });

    0 讨论(0)
  • 2020-12-11 03:36

    My guess would be this (sorry i don't have ie8 on this machine to test)

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head runat="server">
        <title>Page full of awesomeness</title>
        <script type="text/javascript" src="~/Scripts/jquery-1.3.2.js"></script>
        <script type="text/javascript">        
            $(document).ready(function() {
                alert("Hello?");           
            });
        </script>
    </head>
    
    <body>
    
    </body>
    

    Also i'd suggest to use /Scripts/jquery-1.3.2.js if you are referring to your site's root

    0 讨论(0)
  • 2020-12-11 03:44

    With current XHTML strict standards:

    Even when src is specified, the script tag is not an empty tag, and cannot be written <script src=".... />. If you include the src you should not include any script between the opening and closing tags as browser handling of any script between the tags is not reliable.

    Basically, do not self close the tag. Use </script>.

    0 讨论(0)
  • 2020-12-11 03:44

    In addition to what others have said, you're also missing the </html> at the end of the document. Maybe just a copy/paste error :)

    0 讨论(0)
  • 2020-12-11 03:50

    Also check the compatibility of jQuery. Currently jQuery 2.x only supports IE9 or later. Not IE8

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