在div中加载html内容

时间:2013-09-20 05:39:37

标签: jquery html load jquery-load

我正在尝试使用jquery .load

将其他html文件中的内容加载到我现有的html文件中

但不幸的是它没有加载内容。

请建议我使用正确的解决方案。

这是我现有的html和jquery从外部HTML文件加载内容

    <!DOCTYPE html>
    <html lang="en">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Review</title>
    <script src="http://code.jquery.com/jquery-1.9.1.js"></script>
    </head>
    <body>
            <ul class="reviews" id="revw">

            </ul>
    </div>
    <script>
    function check(){
$( "#revw" ).load( "review_list.html #test" );
}
    </script>
    </body>
    </html>

我们需要加载内容的网页

<html>
<head></head>
<body>
<div id='test'>
 Load this content to the id="revw" div.
</div>
</body>
</html>

3 个答案:

答案 0 :(得分:3)

您没有在任何地方调用check()函数。

试试这个:

...
<script>
function check() {
    $( "#revw" ).load('review_list.html #target');
}
$(document).ready(function() {
    check(); // call the function
});
</script>
...

答案 1 :(得分:1)

使用$.get尝试此操作。

 $(document).ready(function() {
    $.get('review_list.html')
             .success(function(data) {
                 $('#revw').html(data);
             });
    });

您的HTML页面

<div id='test'>
 Load this content to the id="revw" div.
</div>

答案 2 :(得分:0)

请参阅此链接:

Load one page in to another using Jquery

它详细解释了您的问题

Delayed loading of a html page using jquery

这些都可以解决问题。