onkeypress事件监听器不工作

时间:2012-10-29 07:01:52

标签: javascript html

我要求不使用html事件处理程序。所以我试图从脚本处理它。我做了一个小功能,但它没有工作

<head>
<script type="text/javascript">
function lld () {
    document.getElementById('me').onkeypress= myfunction()
}

function myfunction(){
    alert('hiiiii')
}

</script>
</head>
<body>
    <input type="text" id="me" />
</body>
</html>

3 个答案:

答案 0 :(得分:6)

试试这个

document.getElementById('me').onkeypress= myfunction;

function myfunction(){
    alert('hiiiii');
}

答案 1 :(得分:2)

您可以查看此fiddle

JS CODE

function myfunction() {
    alert('hiiiii');
}

document.getElementById('me').onkeypress= myfunction;

答案 2 :(得分:1)

myfunction()是函数返回的值。您需要将onkeypress设置为函数本身,而不是返回值:

document.getElementById('me').onkeypress= myfunction;

整个代码可能是:

<script type="text/javascript">
function myfunction(){
    alert('hiiiii')
}

window.onload=function(){
   document.getElementById('me').onkeypress= myfunction;
}
</script>