我要求不使用 html 事件处理程序。所以我试图从 script 处理它。我做了一个小功能,但它不起作用
<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>