700字范文,内容丰富有趣,生活中的好帮手!
700字范文 > HTML文本框中只能输入纯数字

HTML文本框中只能输入纯数字

时间:2019-02-06 17:46:51

相关推荐

HTML文本框中只能输入纯数字

<?php

session_start();

// store session data

$_SESSION['views']=1;

?>

<script>

function replaceNotNumber(hehe)

{

var pattern = /[^0-9]/g;

if(pattern.test(hehe.value))

{

hehe.value = hehe.value.replace(pattern,"");

}

}

</script>

<html>

<body>

<input type = "text" value="input your name here!" onpropertychange="replaceNotNumber(this)" οninput="replaceNotNumber(this)"/>

</body>

</html>

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。