1

My code

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
<script src="js/jquery.js"></script>
<script>
$(function(){
 $("div").live("keyup",function(event){
 var code=(event.keyCode ? event.keyCode : event.which); 
 alert(code);return false;
 });

});</script>
</head>

<body>
<div tabindex="0">We will be performing network maintenance today starting at 18:00 UTC - expect a brief scheduled outage</div>
</body>
</html>

It is alerting keycode for all buttons but on pressing backspace button the back button of browser comes in action.How can i prevent it?

4

1 回答 1

4

You can use keydown event instead:

$("div").live("keydown", function(event) {
    var code = (event.keyCode ? event.keyCode : event.which); 
    alert(code);
    return false;
});

Meanwhile, key code for backspace is 8.

Try it: http://jsfiddle.net/qfET2/

于 2012-05-19T17:25:59.337 回答