2

Web ページにいくつかの外部 JavaScript ファイルを含めました。これらの JavaScript は、IE を除くすべてのブラウザーで適切に機能します。IE では、これら 2 つのファイルは Web ページに含まれていません。F12 開発者ツールの「ネットワーク」セクションでも、2 つの外部 JavaScript ファイルへの要求が表示されるようになりました。また、ページに 2 つの外部 CSS ファイルを含めました。これらの CSS ファイルもリクエストを受け取りません。

何が問題なのですか?

ページ: http://shapco.plus.printsites.com/templates-download.html 外部 JavaScript ファイル:

<script type="text/javascript" src="http://templates.kliqprint.us/js/jquery.colorbox-min.js"></script>
<script type="text/javascript" src="http://templates.kliqprint.us/js/templates.js"></script>

外部 CSS ファイル:

<link href="http://templates.kliqprint.us/css/colorbox.css" rel="stylesheet" />
<link href="http://templates.kliqprint.us/css/style.css" rel="stylesheet" />
4

5 に答える 5

3

doctype は xhtml strict であり、head タグの外側で css 宣言を許可していません。

おそらく、最初にドキュメント xhtml-strict を有効にする作業を行う必要があります

    Result: 18 erreurs / 0 avertissements

    line 73 column 79 - Erreur: there is no attribute "onKeyPress"
    line 79 column 29 - Erreur: an attribute value specification must be an attribute value literal unless SHORTTAG YES is specified
    line 80 column 7 - Erreur: document type does not allow element "tr" here
    line 81 column 20 - Erreur: an attribute value specification must be an attribute value literal unless SHORTTAG YES is specified
    line 83 column 7 - Erreur: end tag for "tr" omitted, but OMITTAG NO was specified
    line 78 column 4 - Info: start tag was here
    line 111 column 216 - Erreur: required attribute "alt" not specified
    line 113 column 9 - Erreur: ID "_mcePaste" already defined
    line 112 column 9 - Info: ID "_mcePaste" first defined here
    line 114 column 9 - Erreur: ID "_mcePaste" already defined
    line 112 column 9 - Info: ID "_mcePaste" first defined here
    line 115 column 9 - Erreur: ID "_mcePaste" already defined
    line 112 column 9 - Info: ID "_mcePaste" first defined here
    line 116 column 9 - Erreur: ID "_mcePaste" already defined
    line 112 column 9 - Info: ID "_mcePaste" first defined here
    line 450 column 17 - Erreur: end tag for "br" omitted, but OMITTAG NO was specified
    line 450 column 8 - Info: start tag was here
    line 453 column 78 - Erreur: document type does not allow element "link" here
    line 454 column 75 - Erreur: document type does not allow element "link" here
    line 458 column 61 - Erreur: document type does not allow element "hr" here; missing one of "object", "applet", "map", "iframe", "button", "ins", "del" start-tag
    line 464 column 42 - Erreur: end tag for "select" which is not finished
    line 473 column 15 - Erreur: end tag for "br" omitted, but OMITTAG NO was specified
    line 473 column 6 - Info: start tag was here
    line 485 column 9 - Erreur: end tag for "br" omitted, but OMITTAG NO was specified
    line 485 - Info: start tag was here
    line 491 column 15 - Erreur: end tag for "div" omitted, but OMITTAG NO was specified
    line 40 - Info: start tag was here
于 2012-10-23T16:24:50.163 に答える
0

私がデバッグできた唯一のものは

<script type="text/javascript" src="http://templates.kliqprint.us/js/jquery.colorbox-min.js"></script> <script type="text/javascript" src="http://templates.kliqprint.us/js/templates.js"></script><script type="text/javascript"> //Google Analytics </script>

ボディセクションにあります

ここに画像の説明を入力

それをトリミングしてヘッダーに持ってくることはできますか。生の HTML をコピーしてここに貼り付けると、次のような画面が表示されます。

ここに画像の説明を入力

于 2012-10-23T16:11:10.267 に答える
0
  • doctype が間違っています。使用してください<!doctype html>
  • クロージングがありません</div>
    前に1つ挿入する</body>と、ページが機能するはずですが、閉じる場所を確認していません

2 番目の問題は IE tho を壊すものであると確信しています。最初の問題はおそらく回避できます。

于 2012-10-23T16:39:28.080 に答える
0

ページに XML コードが含まれているため、IE で問題が発生します。これらの XML コードを削除すると、うまく機能しました。

于 2012-11-07T11:12:20.757 に答える