jQuery加载不显示任何内容吗?

时间:2019-11-04 09:11:16

标签: javascript jquery html

我有一个带有div容器的index.html文件:

<div class="Widget"></div>

在index.html中还有一个jquery代码,该代码应加载另一个html文件的内容并将其作为内容放入小部件中:

            $( ".Widget" ).load( "loadTest.html", function( response, status, xhr ) {
            if ( status == "error" ) {
                alert("error: " + xhr.status + " " + xhr.statusText );
            } else {    
                alert("Success"); 
            } 
        });

我收到警报“成功”,但我的“窗口小部件” div中没有​​内容。 loadTest.html看起来像这样:

<html lang="de">
<head>
    <meta charset="UTF-8"/>
</head>

<body>
    My content 
</body>
</html>

0 个答案:

没有答案