0

我有两页。第一个是 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) 我已通过从 UI 添加到 alertPage 并查看它来验证 alertPage.html 实际上是由 index.html 加载的正在渲染。

我在这里想念什么?

4

2 回答 2

4

缺少)的,额外的}

jQuery(document).ready(function(){
    alert("hi there");
    //Remove the }
}); //<---Add the );
于 2013-11-11T19:23:20.310 回答
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>

于 2013-11-11T19:58:32.653 回答