我有这个代码:
<html>
<title>a</title>
<head>
<script type="text/javascript" src="jquery-1.8.0.js"></script>
<script type="text/javascript">
$("#target").keypress(function(event) {
if ( event.which == 13 ) {
alert("Enter has been clicked.");
}
}
</script>
</head>
<body>
<input type="text" id="target"></input>
</body>
</html>
我希望在输入框中单击输入后出现一个消息框。
谢谢。