javascript - Adding script JS in HTML problem - Stack Overflow

somebody can answer me why occur this problem?With the following code my site only works in Chrome, on

somebody can answer me why occur this problem?

With the following code my site only works in Chrome, on IE7/8 and Firefox show me only the background:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" ".dtd">
<html xmlns="">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Site Title</title>
<link href="css/styles.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="js/jquery-1.3.2.min.js" />
<script type="text/javascript" src="js/functions.js" />
</head>
...

And with this code works in Chrome, IE7/8 and Firefox:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" ".dtd">
<html xmlns="" lang="pt-br" xml:lang="pt-br">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>CSite Title</title>
<link href="css/styles.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="js/jquery-1.3.2.min.js"></script>
<script type="text/javascript" src="js/functions.js"></script>
</head>
...

Viewing the code that don't works in Firebug I see that the file 'functions.js' is not called, I don't understand, why don't works with "<script />" and with "<script></script>" works?

somebody can answer me why occur this problem?

With the following code my site only works in Chrome, on IE7/8 and Firefox show me only the background:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Site Title</title>
<link href="css/styles.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="js/jquery-1.3.2.min.js" />
<script type="text/javascript" src="js/functions.js" />
</head>
...

And with this code works in Chrome, IE7/8 and Firefox:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3/1999/xhtml" lang="pt-br" xml:lang="pt-br">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>CSite Title</title>
<link href="css/styles.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="js/jquery-1.3.2.min.js"></script>
<script type="text/javascript" src="js/functions.js"></script>
</head>
...

Viewing the code that don't works in Firebug I see that the file 'functions.js' is not called, I don't understand, why don't works with "<script />" and with "<script></script>" works?

Share Improve this question edited Nov 13, 2009 at 17:58 Cesar asked Oct 17, 2009 at 13:33 CesarCesar 3,5192 gold badges31 silver badges43 bronze badges 0
Add a ment  | 

4 Answers 4

Reset to default 12

from this ticket (Why don't self-closing script tags work?)

(please note that in the referenced ticket the accepted answer is not actually correct)

Note that IE does not support XHTML parsing. Even if you use an XML declaration and/or an XHTML doctype, IE still parses the document as plain HTML. And in plain HTML, the self-closing syntax is not supported. The trailing slash is just ignored, you have to use an explicit closing tag.

Even browsers with support for XHTML parsing will still parse the document as HTML unless you serve the document with a xml mime type. But in that case IE will not display the document at all!

Because <script> tag MUST have a closing tag in HTML4

Another source for information: XHTML - Is writing self closing tags for elements not traditionally empty bad practise?

The HTML specification requires that you have an end tag for a script element. The former is not valid HTML, while the latter is.

Closing the tags I think is best viewed in code and also I think a good practice. If you follow this tip will no longer have such problems.

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743680788a4489346.html

相关推荐

  • javascript - Adding script JS in HTML problem - Stack Overflow

    somebody can answer me why occur this problem?With the following code my site only works in Chrome, on

    1天前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信