标签: javascript
我试图在按钮单击时调用一个函数,它会抛出未定义的函数名称。我做错了什么?
这是我的{{3}}
function showit(){ var el = document.getElementById("testBox"); alert(el); } <input type=text id='testBox'> <input type=button value='click' onclick='showit()'>