重複の可能性:
サーバーによって MIME タイプが設定されているのに、なぜ <script type="text/javascript"> と書くのですか?
<script type='type/javascript'></script>
もう type 属性は必要ないことはわかっています。私の質問は、自分でスクリプトを挿入する場合、それを使用する必要がありますか?
var hello = document.createElement('script');
hello.type = 'text/javascript'; // still needed?
hello.async = true;
hello.src = 'http://mysite.com/script.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(hello);
Google アナリティクスではまだ使用されてga.type = 'text/javascript';
おり、Disqus も同様に使用されています。dsq.type = 'text/javascript';
それで、これは必要ですか?