程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> js-<td colspan=2> 是什麼意思 啊 大神!

js-<td colspan=2> 是什麼意思 啊 大神!

編輯:編程綜合問答
<td colspan="2"> 是什麼意思 啊 大神!
 <form action="success.html"  method="post" onsubmit="return run()">
        <table border="1" width="60%">
            <tr>
                <td>輸入姓名</td>
                <td>
                    <input type="text" name="username" id="nameId" onfocus="run1()"/><span id="uspan"></span>
                </td>
            </tr>
            <tr>
                <td>輸入密碼</td>
                <td>
                    <input type="password" name="password" id="pwdId" />
                </td>
            </tr>
            <tr>
                <td>確認密碼</td>
                <td>
                    <input type="password" name="repassword" id="repwdId" /><span id="rpspan"></span>
                </td>
            </tr>
            <tr>
                <td>
                    輸入郵箱
                </td>
                <td>
                    <input type="text" name="email" id="emailId" /><span id="espan"></span>
                </td>
            </tr>
            <tr>
                <td colspan="2">
                     <input type="submit" value="注冊">  

                </td>
            </tr>
        </table>
    </form>

最佳回答:


td一個單元格
spancol,這個單元格跨2列。
類似的spanrow,跨行。
類似excel的合並單元格

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved