0

このHTMLは何らかの理由で機能していません...

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
    <head>
        <meta http-equiv="Content-type" content="text/html;charset=UTF-8"/>
        <title>Gallery</title>
        <!--
        <link rel="stylesheet" type="text/css" href="gallery.css"/>
        Note: use if stylesheet is separated from main project
        I am embedding the CSS so it is easier to send
        -->
        <!--
        <script type="text/javascript" src="gallery.js"></script>
        Note: use if javascript is separated from main project
        I am embedding the JS so it is easier to send
        -->
        <style>
            /* CSS */
            #topbar {}
            #selection {border: 3pt solid red;}
        </style>
        <script type="text/javascript">
            // Javascript
        </script>
        <!-- JQuery -->
        <script src="http://code.jquery.com/jquery-1.8.1.min.js" type="text/javascript"/>
    </head>
    <body>
        <div id="topbar">
            <table id="selection">
                <tr>
                    <td>Test1</td>
                </tr>
            </table>
        </div>
    </body>
</html>

何もbody表示されません!そこにランダム<p>にテキストを貼り付けてみましたが、表示されませんでした。何が問題ですか?

4

1 に答える 1

8

タグを閉じる必要があります<script>。自己終了タグは、次の<script>要素では無効です。

<script src="http://code.jquery.com/jquery-1.8.1.min.js" type="text/javascript"></script>
于 2012-09-19T00:56:18.390 に答える