哪个更好:在调用脚本时包含或src?

时间:2014-12-10 04:25:15

标签: javascript php include require src

应该有什么好的编码实践?

代码1

<script src="js/sample.js"></script>

代码2

<script>

    <?php include('js/sample.js'); ?>

</script>

3 个答案:

答案 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.