こんにちは。お世話になっております。
楽天GOLDのindex.html 内の ヘッダーとフッターをパーツにして、index.htmlで読み込んでいます。
【もともと】
<body>
<div id="header"></div>
// 本文
<div id="footer"></div>
</body>
<script src="
https://code.jquery.com/jquery-2.x.x.js" ></script>
<script>
$(function(){
$("#header").load("r-header.html");
$("#footer").load("r-footer.html");
});
</script>
///////////////////////////////////
としてあります。
jQuery 3.0 にかえる場合、loadは廃止ということで、調べてみて
下記のように書いたのですが、loadしたいhtmlが読み込まれません。
<script src="
https://code.jquery.com/jquery-3.5.1.js" integrity="sha256-QWo7LDvxbWT2tbbQ97B53yJnYU3WhH/C8ycbRAkjPDc=" crossorigin="anonymous"></script>
<script>
$(function(){
$('#header').on("load", header.html)
$('#footer').on("load", footer.html)
});
</script>
をどう書き換えればよいでしょうか?
よろしくお願いいたします。