H50055:html 页面加载完后再加载js文件 ,url带有时间戳后缀

1,

<script>
    (function(){

const now = (new Date()).getTime(); const e = document.createElement('script'); e.setAttribute('src', `asset/js/app.js?t=${now}`); document.body.appendChild(e);
})();
</script>
琥珀君的博客
原文地址:https://www.cnblogs.com/eliteboy/p/13524961.html