使用我的代码在chrome中发布问题

时间:2013-06-28 07:43:41

标签: javascript jquery google-chrome mozilla

我正在研究jquery和javascript。我正在使用外部库来使功能工作。但代码适用于Firefox。但问题在于铬。它不像mozilla那样工作。因为我对这个领域很新,所以我用google搜索并没有找到解决方案。我需要为此安装任何chrome扩展文件。任何帮助,将不胜感激。这是我的代码:

   <!DOCTYPE html> 
     <html>
      <head>
        <meta http-equiv="content-type" content="text/html; charset=UTF-8">
        <title>login testing</title>

            <script type='text/javascript' src='http://code.jquery.com/jquery-1.9.1.js'></script>

      <script type='text/javascript' src="http://cdnjs.cloudflare.com/ajax/libs/jquery-cookie/1.3.1/jquery.cookie.min.js"></script>


    </head>
    <body>
      <script>
       $(window).load(function(){
      $(function()
       {
        $('#submit').click(function()
          { 
              $('.container').show();
              $('#login').hide();
                $.cookie('shown', true);
                });
              if ($.cookie('shown')) {
                  $('#submit').click()
              }
            });
         });  

       </script>


         <div id="login">
             <form id="loginform">
                 Uname:
                    <input type="text" id="uame" name="uname">

                 Pwd:
                    <input type="password" id="pwd" name="pwd">

                <div class="Button1">
    <button type="button" id="submit" value="Login" class="btn" >
                        Submit
                    </button>
    <button type="reset"  id="reset" value="Reset"  class="btn">
                        Clear All
                    </button>
                </div>

            </form>

                        </div>


                   <div class="container" style="display:none">
                Welcome to the naughtyprogrammer website    
                    </div>


               </body> 

               </html>

0 个答案:

没有答案