为什么我们在使用Java Script时使用<script“inline”=“”.. =“”>标记

时间:2015-06-17 15:54:52

标签: javascript html

有人可以告诉我为什么在标签内使用“in-line”属性&#xA;例如:

&#xA;&#xA;
 &lt; script inline type = “text / javascript”&gt;&lt; / script&gt;&#xA;  
&#xA;&#xA;

如果没有此属性,则JS不会在页面中加载

&#XA;

1 个答案:

答案 0 :(得分:2)

脚本标记不存在'inline'属性。

MDN

global attributes

列表中也不存在

当人们说“内联javascript”时,他们正在谈论使用脚本标记将javascript放在页面上

var a = [ 1, 3, 5 ],
    b = [ 2, 4, 6 ],
    c = [];

a.map(function(v, i) { c[i] = [v, b[i]]; });

或者只是进入html标签

<script>
    alert('hello world!!!');
</script>

而不是单独的文件。

<a href="#" onclick="return false;">click here!</a>