0

以下html无法正确输出是否有原因?

<html>
<script src="jquery_v1.9.js" style="text/javascript" />
<script style="text/javascript"> $("#container").load('partial.html')</script>

<body>
<h1>Partial Rendering Demo</h1>
<div id="container"></div>
</body>
</html>

我在 ASP.net MVC 4 书中使用了一个示例,jquery 文件只是最新版本的复制/粘贴,所有文件都在同一目录中,并且 'partial.html' 文件夹simple 包含一个 h2 元素。但是,当我运行主 html 时,永远不会显示 h2 元素。

我忽略了什么吗?

4

1 回答 1

1

尝试这个:

<script src="jquery_v1.9.js" type="text/javascript"></script>
<script type="text/javascript">
    $(document).ready(function{
        $("#container").load('partial.html')
    });
</script>
于 2013-01-17T23:21:28.843 回答