allowcharsexample.htm

来自「这是javascript高级程序设计的源码」· HTM 代码 · 共 16 行

HTM
16
字号
<html>
    <head>
        <title>Allow Characters Example</title>
        <script type="text/javascript" src="detect.js"></script>
        <script type="text/javascript" src="eventutil.js"></script>
        <script type="text/javascript" src="textutil.js"></script>
    </head>
    <body>
        <p>Try typing in the textbox. You can only type number characters.</p>
        <form method="post" action="javascript:alert('Submitted')">
            <textarea rows="10" cols="25" validchars="0123456789V" onkeypress="return TextUtil.allowChars(this, event)"></textarea>
            <input type="submit" value="Submit Form" />
        </form>
    </body>
</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?