0
LightSwitchの各ページにカスタムイメージ/ヘッダー(タイトル、イメージ、リンクを含むhtmlファイル)を追加できますか?LightSwitchの各ページのカスタムヘッダー
LightSwitchの各ページにカスタムイメージ/ヘッダー(タイトル、イメージ、リンクを含むhtmlファイル)を追加できますか?LightSwitchの各ページのカスタムヘッダー
header.htm
ファイルに含ま
<script type="text/javascript">
$(document).ready(function() {
$.get("PartialViews/header.htm", function (response) {
var logfile = response;
document.body.insertAdjacentHTML("afterBegin", logfile);
msls._run()
.then(null, function failure(error) {
alert(error);
});
});
});
</script>
、後、私は、前に
に、default.htm
ファイルに以下に示すように、固定ヘッダとしてHTMLファイルをロードすることによって
<script type="text/javascript">
$(document).ready(function() {
msls._run()
.then(null, function failure(error) {
alert(error);
});
});
</script>
をやりました固定されたタイトル、画像、リンク。