HTMLページを読み込もうとしています。自分自身のデータであり、ajaxがhtml-import
を使用してビューをレンダリングするよう呼びますが、仕上げレンダリングは、ビューはそのすべての要素html-importsを使用してjavascript非同期呼び出しでhtmlページを読み込む方法
(function(){
\t function createLauncherPanel() {
var div = document.createElement("div");
div.setAttribute("class", "launcher-panel");
div.classList.add("hidden");
div.appendChild(createLauncherLink(div));
document.getElementsByTagName("body")[0].appendChild(div);
return div;
}
function createLauncherLink(container) {
var link = document.createElement("link");
link.setAttribute("rel", "import");
link.setAttribute("href", "path-to-htmlpage-with-data-load -asynchronously-with-json-feed-and-view-to-render");
console.log('container',container);
link.addEventListener('load', function(e) {
// all imports loaded
\t console.log(e);
\t console.log('link',link);
\t console.log(link.import);
// #ele is the element i need to get from the imported page - but sence this element is not rendered yet because of the lateinse of rendering and network calls , this will return null
container.appendChild(link.import.querySelector('#ele'));
});
return link;
}
createLauncherPanel();
})();
<!DOCTYPE html>
<html>
<head>
\t <meta charset="utf-8"/>
<title>title</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://cdnjs.cloudflare.com/ajax/libs/webcomponentsjs/1.0.13/webcomponents-lite.js" type="text/javascript"></script>
</head>
<body>
<h1>Hello, worssld</h1>
<div id="ff"></div>
<script src="sc.js" type="text/javascript"></script>
</body>
</html>
いくつかのコードを表示するか、下線と終わりに直面しますか?ここには何も表示されていません。 – mplungjan
に問題を説明するコードが追加されました。@mplungjan – user3853257
何もありません。 https://www.google.com/search?q=web+component+onload – mplungjan