编程学习干货

html难点标签

2018-07-05  本文已影响16人  崔磊8080

html难点标签

iframe 标签

现在已经不常用,用起来会很卡。因为相当于新开一个窗口。

    <iframe name=xxx width="100%" height="500px" frameborder="3"></iframe>
    <a target=xxx href="https://www.weibo.com">weibo</a>
    <a target=xxx href="https://www.sina.com">sina</a>

iframename属性和atarget属性相关联。

a标签

跳转页面(HTTP GET 请求)

form 标签

跳转页面(HTTP POST 请求)

里面必须要有submit按钮。

name属性的才能提交到data。

data中的显示,为html属性name:value

默认为get,只有get和post。

target属性使用和a标签一样。

<form action="users" method="post">
    <input type="text" name="username">
    <input type="password" name="password">
    <input type="submit" value="提交">
</form>

post

post把参数放到 第四部分里面

action可以修改为查询参数。

utf-8编码格式

method为post时,发出的http请求

get

get把参数放到查询参数里面

method为get时,发出的http请求

input / button

type

<input type="checkbox" id="xxx"> <label for="xxx">吃饭</label>

id=for时,点击文字,checkbox也会反应。

把label包住input可以省略idfor

label功能使文字和input相关联。

<textarea style="resize: none; width: 100px; height: 100px;" name="" id="" cols="30" rows="10"></textarea>

table

trtable roll

tdtable data

thtable header

css中添加border-collapse: collapse;,表格变成单线。

    <table border=1>
        <colgroup>
        <col width=100>
        <col width=200>
        <col width=100>
        <col width=70>
        </colgroup>
        <thead>
            <tr>
                <th></th>
                <th>姓名</th>
                <th>班级</th>
                <th>分数</th>
            </tr>
        </thead>
        <tbody>
            <tr>
                <th>平均分</th>
                <td>小明</td>
                <td>2</td>
                <td>3</td>
            </tr>
        </tbody>
        <tfoot>
            <tr>
                <th>总分</th>
                <td>小红</td>
                <td>2</td>
                <td>3</td>
            </tr>
        </tfoot>
    </table>
上一篇下一篇

猜你喜欢

热点阅读