Après avoir suivi, vous pouvez suivre ses informations dynamiques en temps opportun
Cours dans la section correspondante:Gestion pratique du site Web backend (Partie 2)
文本标签:<br> <strong>粗体:strong</strong><br> <em>斜体:em</em> <hr>:水平线 <p>段落标签</p> <h1>标题标签</h1> <br>:换行 <pre> 预格式文本 </pre> 链接标签:<a href="" target="_black"></a> :_black _新的界面打开 :_self _当前界面打开 :_parent _父窗口打开 :_top 最顶层打开 图像标签 <img src="" alt=""> 表格标签:border=边框 cellpadding=间距 cellspacing=边框大小 <table border="" cellpadding="" cellspacing=""> <caption></caption> <tr> <th></th> </tr> <tr> <td></td> </tr> </table> 列表标签:相互之间可以互相嵌套 :有序列表 <ul> <li></li> </ul> :无序列表 <ol type="none"> .取消无无序列表前的小黑点 <li></li> </ol> :自定义列表 <dl> <dt></dt> :标题 <dd></dd> :内容 </dl>
区块元素:div_负责结构,块级元素 :span_负责内容,行内元素(内联元素) :div <div></div> 自动占用一整行 :span <span></span> 内容在一行内,如果放不下就将所有内容放到下一行显示 表单: checked:默认值 <form action="" methood="get"> :get _所有数据全在url地址上,不安全,且数量有限,默认值为get :post _所有的数据在header请求头上,安全且数据很大 <input type="text" name="" value="">:文本框 <input type="password" name="" value="">:密码框 <input type="radio" name="" value="" checked>单选框(name需要相同) <input type="checkbox" name="" value="">复选框(name必须为数组且相同) <input type="file" name="" accept="images/*">文件上传 <input type="submit" name="" value="">提交按钮 <select name="" rows="" cols="">下拉框 selected:默认值 <option value="" selected></option> <option value=""></option> </select> <textarea></textarea>文本域 </form>
区块元素:div_负责结构,块级元素 :span_负责内容,行内元素(内联元素) :div <div></div> 自动占用一整行 :span <span></span> 内容在一行内,如果放不下就将所有内容放到下一行显示 表单: checked:默认值 <form action="" methood="get"> :get _所有数据全在url地址上,不安全,且数量有限,默认值为get :post _所有的数据在header请求头上,安全且数据很大 <input type="text" name="" value="">:文本框 <input type="password" name="" value="">:密码框 <input type="radio" name="" value="" checked>单选框(name需要相同) <input type="checkbox" name="" value="">复选框(name必须为数组且相同) <input type="file" name="" accept="images/*">文件上传 <input type="submit" name="" value="">提交按钮 <select name="" rows="" cols="">下拉框 selected:默认值 <option value="" selected></option> <option value=""></option> </select> <textarea></textarea>文本域 </form> 内联框架: frameborder=边框 scrolling=滚动条 <iframe src="" frameborder="0" name="" scrolling="no"></iframe> <iframe srcdoc="" frameborder="0" name="" scrolling="no"></iframe> :srcdoc _里面内容写html代码 :src _里面内容为页面
2018-04-080个赞