在我的网页中,我使用了一些JavaScript,它的工作原理很好,结果显示了我所需要的.但是当我去查看页面源代码时,我只看到了JavaScript代码,但看不到输出.下面是我的代码.
var link = document.createElement('link');
link.setAttribute('rel','canonical');
link.setAttribute('href',location.protocol + '//' + location.host + location.pathname);
document.head.appendChild(link);
</script>
这段代码很不错.当我点击Google chrome上的“检查”时,我可以看到其工作原理.但当我单击“查看页面源代码”时看不到输出.
最佳答案
原文链接:https://www.f2er.com/html/530525.html