1

你能告诉我为什么这行不通吗?一整天都被它困住了。

我只想复制第一个字段中的任何内容,将其转换为变量并将其投影到最后一个

场地。

谢谢

ps:不用说我只是复制了代码的相关位......

<th bgcolor="#eeeee" width=12.5%>Monday</th>
        <th bgcolor="#eeeee" width=12.5%><input id="test" value="09:15" size=15></td></th>
        <th bgcolor="#eeeee" width=12.5%><input type=time id="Monday_Breakfast_LastSeating" value="11:45" size=15></td></th>

    </form>
    </table>

    <form id="form2" id=other method=POST>




        <tr>
            <td bgcolor="#aaeeaa"align=center><button onclick="myFunction()">Calculate</button></td>

        </tr>

    </form>


    <table width=40%  border=0>

        <th bgcolor="#eeaaaa" align=center width=33%>Goal</th>

    </table>

    <form id=result method=POST>
    <table width=40% border=0>

        <th style="border:black;" bgcolor="#eeaaaa" align=center><em></em> <p id="calculation2" size=15>N/A</p></th>
        <th bgcolor="#eeaaaa" align=center><em></em> <p id="calculation3" size=15>N/A</p></th>
        <th bgcolor="#eeaaaa" align=center><p id="calc" size=15>N/A</p></th>

    </table>
    </form>

    <script type="text/javascript">

    function myFunction() {

        var test = getElementById("test").value;
        document.getElementById("calc").innerHTML = test;
        }

    </script>
4

3 回答 3

1

更改 var test = getElementById("test").value;var test = document.getElementById("test").value;

于 2012-07-10T14:31:21.840 回答
1

你忘了document.之前的第一个getElementById

function myFunction() {
  var test = document.getElementById("test").value; // you forgot the document. here..
  document.getElementById("calc").innerHTML = test;
}

此外,元素没有size属性。p也许你想使用input元素..但是对于那些你应该使用value属性而不是innerHTML设置它们..

于 2012-07-10T14:31:29.953 回答
0

它应该是:

document.getElementById('calc').innerHTML = document.getElementById('test').value;

getElementById()本身不是一个有效的功能

于 2012-07-10T14:33:34.377 回答