Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<meta name="description" content="只允许输入数字和逗号的输入框(onkeyup)">
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body>
  <strong>只允许输入纯数字和逗号</strong>
  <input type="text" onafterpaste="this.value=this.value.replace(/[^\d,]/g,'')" onkeyup="this.value=this.value.replace(/[^\d,]/g,'')">
</body>
</html>
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
imzhipro
0viewers