键盘ctrl+enter键触发事件

当你做网站时 有时要用键盘的键来触发事件,现在以 ctrl+enter 键来触发事件

<html>
<head>

<script>
function SendMess()
{
alert("fff");
}
</script>
</head>
<body>
<input id="mess" type="text" size="75" maxlength="90" onkeydown="if(event.keyCode==13 && event.ctrlKey ) SendMess();"/>
</body>
</html>

你可能感兴趣的:(事件)