【WEB基础】⑤一些前端小东西

来源:互联网 发布:淘宝网卖家客户端 编辑:程序博客网 时间:2024/05/30 07:12
输入框禁止输入非数字:
<input  class="text-input small-input" type="text" id="empno" name="empno" onKeyUp ="if(isNaN(value))execCommand('undo')"  onChange ="if(/\D/.test(this.value)){alert('只能输入数字');this.value='';}" > 

关于表格:

<table border="1" bgcolor="#FFFF99" cellpadding="3" cellspacing="3" background="xx1.jpg" width="400" height="300"><thead><tr>    <th>序号</th>        <th>姓名</th>        <th>性别</th>        <th>年龄</th>    </tr>    </thead>    <tbody>    <tr>    <td>1</td>        <td>2</td>        <td>3</td>        <td>4</td>    </tr>    <tr>    <td>1</td>        <td colspan="2">2</td>                <td rowspan="2"> </td>    </tr>    <tr>    <td>1</td>        <td>2</td>        <td>3</td>           </tr>    </tbody>    <tfoot>     <tr>    <td colspan="4">版权所有</td>           </tr>    </tfoot></table>

图片:


还有。。活用innerhtml

0 0
原创粉丝点击