html Verifica se a teclapressionadaéumnúmeroe retorna。
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html Verifica se a teclapressionadaéumnúmeroe retorna。相关的知识,希望对你有一定的参考价值。
<script type="text/javascript">
function verificaNumero(event) {
var keyCode = ('which' in event) ? event.which : event.keyCode;
isNumeric = (keyCode >= 48 /* KeyboardEvent.DOM_VK_0 */ && keyCode <= 57 /* KeyboardEvent.DOM_VK_9 */) ||
(keyCode >= 96 /* KeyboardEvent.DOM_VK_NUMPAD0 */ && keyCode <= 105 /* KeyboardEvent.DOM_VK_NUMPAD9 */) ||
(keyCode == 0) ||
(keyCode == 8);
return isNumeric;
};
</script>
<input type="text" onkeydown="return verificaNumero(event);">
以上是关于html Verifica se a teclapressionadaéumnúmeroe retorna。的主要内容,如果未能解决你的问题,请参考以下文章
sql Verifica se os存档日志estãopordoaplicados noStandbylógico
sql VERIFICA TUPLAS MORTAS.sql
php VerificaçãodeusuáriosFacebook2.0
SE2205数据结构与算法
SE-555 A4: GPS Position讲解
Java SE 疑难点记录