2

JavaScript の課題があり、その課題の一部に JavaScript が埋め込まれた 2 列のテーブルがあり、摂氏と華氏の両方で 50 の温度をループします。

W3 の HTML バリデーターをチェックしたところ、これまでに 2 つのエラーがあることがわかりました...決して取り除くことができないのは、「このコンテキストでは要素 tbody の子として要素スクリプトを許可していません」です。

そして、これは私のコードです:

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">

<style type="text/css">
body { background-image:url('background.png'); text-align:center; font-family:verdana; color:white; }

ul
{
list-style-type:none;
margin:0;
padding:0;
padding-top:6px;
padding-bottom:6px;
}
li
{
display:inline;
}

a:link,a:visited
{
opacity:0.75;
filter:alpha(opacity=75);
font-weight:bold;
color:#FFFFFF;
background-color:#999999;
text-align:center;
padding:5px;
text-decoration:none;
text-transform:uppercase;
border: 1px solid white;
font-weight:bold;
}

a:hover,a:active
{
opacity:1;
filter:alpha(opacity=100);
background-color:#999999;
border: 1px solid white;
font-weight:bold;
}

h1 { font-size: 25px; }
h2 { font-size: 12px; }
h3 { font-size: 10px; position:fixed; bottom: 5px; left:0%; right:0%; font-weight:normal; }
h4 { font-size: 25px; text-transform:uppercase; }

navigationtext { font-weight:bold; text-transform:uppercase; }

</style>
<head>
<title>Untitled Document</title>
</head>
<body>
<table>
<tr><td>Celsius</td><td>Fahrenheit</td></tr>
<script type="text/javascript" src="temperatures.js"></script>
</table>
</body>
</html>

外部 JavaScript ファイルは次のとおりです。

var celsius = 0;
for (celsius = 0; celsius <= 50; celsius) {
    document.write("<tr><td>"+celsius+"</td><td>"+((celsius*9/5)+32)+"</td</tr>");
    celsius++;
}
4

3 に答える 3

1

まず、それscriptを の一番下、 のbody直前に移動し</body>ます。それ以外の場所に置くと、ページの読み込みがブロックされます。操作する要素に ID を指定して、DOM を適切に操作できるように HTML を調整します。

<table>
    <thead>
        <tr><th>Celsius</th><th>Fahrenheit</th></tr>
    </thead>
    <tbody id="temperatureTableTbody"></tbody>
</table>
<script type="text/javascript" src="temperatures.js"></script>
</body>

また、クロージャーを作成して、不要な変数でグローバル スコープを汚染しないようにします。適切な DOM 操作を使用するようにコードを少し変更しました。過去 10 年間にリリースされたすべてのブラウザーで動作するはずです。

(function() { //creates a closure, so vars don't leak in the global scope
    //stores a reference to the tbody DOM element which we will append rows to
    var tbody = document.getElementById('temperatureTableTbody');
    //iterates celsius from 0 to 50
    for (var celsius = 0; celsius <= 50; celsius++) {
        //creates elements
        var tr = document.createElement('tr'),
            tdcelsius = document.createElement('td'),
            tdfahr = document.createElement('td');
        //append textNodes to the td elements
        tdcelsius.appendChild(document.createTextNode(celsius));
        tdfahr.appendChild(document.createTextNode((celsius*9/5)+32));
        //appends the tds to the tr
        tr.appendChild(tdcelsius);
        tr.appendChild(tdfahr);
        //append the finished row to the tbody
        tbody.appendChild(tr);
        //repeat loop while condition is true
    }
}());​ //closes the Immediately Invoked Function Expression

フィドル

そして、使用しないでくださいdocument.write

いくつかの参照: document.write が「悪い習慣」と見なされるのはなぜですか?

于 2012-09-05T09:03:09.413 に答える
0

ドキュメントがロードされたら、JavaScript 関数を呼び出す必要があります。

if (document.readyState === "complete") { loadTemperatures(); }

loadTemperatures 関数はテーブルに行を追加します。その方法については、こちらをご覧ください: http://viralpatel.net/blogs/dynamically-add-remove-rows-in-html-table-using-javascript/

エレメント スクリプトは、このコンテキストではエレメント tbody の子として許可されていません

それを修正するために、との<script>間にバリスを置きます。<head></head>

目標を示す jsFiddle を次に示します: http://jsfiddle.net/dfTz6/2/

于 2012-09-05T08:53:06.497 に答える
0

このようにしてみてください。

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Untitled Document</title>
</head>
<body>
<table>
<tr>
    <td>Celsius</td>
    <td>Fahrenheit</td>
</tr>
<script type="text/javascript" > //<![CDATA[
    for (var celsius = 0; celsius <= 50; celsius++) {
        document.write("<tr><td>"+ celsius +"</td>");
        document.write("<td>"+ ((celsius*9/5)+32) +"</td></tr>");
}
//]]></script>
</table>
</body>
</html>
于 2012-09-05T08:50:54.660 に答える