jquery脚本没有运行

时间:2013-11-11 19:21:53

标签: jquery html

我有两页。第一个是index.html,它有一个加载第二页的脚本。第二页有一个jquery脚本,应该运行并显示警告。

在下面显示的代码中,我删除了所有额外的内容以简化我的问题。

index.html的代码:

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:v = "urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office">
  <head>
    <meta http-equiv="content-type" content="text/html; charset=utf-8" />

    <title>Testing</title>
    <link type="text/css" rel="stylesheet" href="./review/includes/look.css" />
  </head>
  <body class="review offline" tabindex="0">
    <div id="sidepanel" class="hidden">
      <div class="section" >
        <div id="navigation" class="rounded-border">
          <ul id="navigationtree">
            <li class="leaf last" title="Home">
              <ins class="icon">&nbsp;</ins><a href="screens/alertPage" tabindex="-1"></a>
            </li>
          </ul>
        </div>
      </div>
    </div>
    <div id="jim-mainWindow">
        <div id="jim-body" class="full web" >
            <div id="simulation" class="firer"></div>

        </div>
    </div>

    <script type="text/javascript" src="./review/includes/j.js"></script>
    <script type="text/javascript">jQuery(document).ready(function(){jimMain.init("screens/alertPage");});</script>
  </body>
</html>

第二页的代码是:

<html>
  <body>

    <script src="jquery-1.10.1.js"></script>
    <script>
        jQuery(document).ready(function(){
            alert("hi there");
            }
        }
    </script>
  </body>
</html>

1)我确保jquery-1.10.1.js页面与alertPage.html在同一目录中 2)我已经验证了index.html实际上是通过从UI添加到alertPage并看到它正在被渲染来加载alertPage.html。

我在这里缺少什么?

2 个答案:

答案 0 :(得分:4)

缺少),额外}

jQuery(document).ready(function(){
    alert("hi there");
    //Remove the }
}); //<---Add the );

答案 1 :(得分:0)

在加载jQuery

后加载自定义js

  

<script src="jquery-1.10.1.js"></script>
<script type="text/javascript" src="./review/includes/j.js"></script>
<script>
    jQuery(document).ready(function(){
        alert("hi there");
    });
</script>