我想在触发事件onfocus时在p项上显示文本字段的值。我究竟做错了什么?先感谢您!

<input type="text" id="test1" name="test2" value="hello" onfocus="myFunction()">
    <p id="test3"></p>

function myFunction() {
    var x=document.getElementByID("test1").value;
    document.getElementByID("test3").innerHTML=x;
}


Here is the code

最佳答案

getElementByID是错误的情况。用getElementById替换所有位置(请注意小写字母d作为最后一个字符。

关于javascript - 触发事件onfocus时,在p项上显示文本的值。,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/32742513/

10-09 18:39