我在 ie8 工作。这是我的代码
<html>
<head></head>
<body>
<div onkeypress =handleEnter()>
name <input type="text" src='Create.gif' >
</br>
<input type="image" src='Create.gif' onclick="alert('not done')">
</div>
</body>
<script>
function handleEnter()
{
if(window.event.keyCode==13)
{
alert('nothing');
event.cancelBubble=true;
}
}
</script>
</html>
这只是一个示例代码,但我的问题是,每当我按下回车键时,都会出现两个警告框,指示还单击了创建按钮。我想在我的代码中阻止它