本文介绍了< script>所需的'type'属性是必需的标签?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我看到了这两个:

 < script src ='http://ajax.googleapis.com/ AJAX /库/ jquery的/ 1.4 / jquery.min.js'>< /脚本> 

与此:

 < script type ='text / javascript'src ='http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js'>< / script> 

类型属性是否以任何方式出现问题?

解决方案

对于 HTML 4.x 类型属性是必需的。 ():


I've seen both this:

<script src='http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js'></script>

and this:

<script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js'></script>

Does the type attribute matter in any way?

解决方案

For HTML 4.x, the type attribute is required. (W3):

For HTML 5, it is optional. If it is not specified, it defaults to text/javascript. (W3):

这篇关于&lt; script&gt;所需的'type'属性是必需的标签?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

06-28 00:18