我有一个带有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>