应该有什么好的编码实践?
代码1
<script src="js/sample.js"></script>
或
代码2
<script>
<?php include('js/sample.js'); ?>
</script>
答案 0 :(得分:1)
<script src="js/sample.js"></script>
更快,更可靠。通过PHP加载可能会更慢。特别是当有多个其他PHP请求时。
答案 1 :(得分:1)
<script src="js/sample.js"></script>
更好。将加载Javascript并将其保存在客户端计算机中作为缓存。因此它将从客户端计算机中的缓存调用代码。但PHP代码将从服务器加载代码,使代码变慢,服务器将更加努力。
答案 2 :(得分:1)
<script src="js/sample.js" type="text/JavaScript"></script>
it is the correct syntax. W3C recommend this is a standard syntax for linking JavaScript file.
fast loading JavaScript file. and SEO optimization you required to define type of script.