http://www.ahfb2000.com/threads/3284-is-there-a-difference-between-lt-script-language-quot-javascript-gt-and-lt-script-type-quot-text-javascript-quot-gt
Yes, there is a difference .
<script language="JavaScript"> is incorrect
There is no attribute "language" it has been deprecated.
The required attribute is "type" and the type="text/javascript"
Hence...
<script type="text/javascript"> is now the correct form
'Programming' 카테고리의 다른 글
(Python) How do I download a file over HTTP using Python? (0) | 2012.06.19 |
---|---|
(Javascript) how to display a message in console window? (0) | 2012.06.19 |
(Javascript) Math.random (0) | 2012.06.18 |
(Visual Studio) Unable to find manifest signing certificate in the certificate store (0) | 2012.06.18 |
(Python) random.random() (0) | 2012.06.18 |