300元3小时服务不限次数-400块钱3小时无限次快餐,500一晚同城约茶,风楼阁交友平台

千锋教育-做有情怀、有良心、有品质的职业教育机构

400-811-9990
手机站
千锋教育

千锋学习站 | 随时随地免费学

千锋教育

扫一扫进入千锋手机站

领取全套视频
千锋教育

关注千锋学习站小程序
随时随地免费学习课程

上海
  • 北京
  • 郑州
  • 武汉
  • 成都
  • 西安
  • 沈阳
  • 广州
  • 南京
  • 深圳
  • 大连
  • 青岛
  • 杭州
  • 重庆
当前位置:成都千锋IT培训  >  技术干货  >  行内元素有哪些,块级元素有哪些,空(void)元素有哪些?

行内元素有哪些,块级元素有哪些,空(void)元素有哪些?

来源:千锋教育
发布人:xqq
时间: 2023-10-14 08:43:01

一、行内元素有哪些,块级元素有哪些,空(void)元素有哪些

行内元素: a、b、span、img、input、strong、select、label、em、button、textarea 。块级元素: div、ul、li、dl、dt、dd、p、h1-h6、blockquote 。空元素: 即系没有内容的HTML元素,例如: br、meta、hr、link、input、img 。

二、块级元素、行内元素、行内块元素的区别

1、块级元素 block

块级元素,顾名思义,该元素呈现“块”状,所以它有自己的宽度和高度,也就是可自定义 width 和 height。除此之外,块级元素比较霸道,它独自占据一行高度(float浮动除外),一般可以作为其他容器使用,可容纳块级元素和行内元素??榧对赜幸韵绿氐悖?/p>每个块级元素都是独自占一行;高度,行高,外边距(margin)以及内边距(padding)都可以控制;元素的宽度如果不设置的话,默认为父元素的宽度(父元素宽度100%;多个块状元素标签写在一起,默认排列方式为从上至下。

 
// 定义地址 // 定义表格标题
// 定义列表中定义条目
// 定义文档中的分区或节
// 定义列表
// 定义列表中的项目
// 定义一个框架集
// 创建 HTML 表单

// 定义最大的标题

// 定义副标题

// 定义标题

// 定义标题

// 定义标题
// 定义最小的标题
// 创建一条水平线 // 元素为 fieldset 元素定义标题
  • // 标签定义列表项目 // 为那些不支持框架的浏览器显示文本,于 frameset 元素内部 <noscript> // 定义在脚本未被执行时的替代内容 <ol> // 定义有序列表 <ul> // 定义无序列表 <p style="text-indent: 2em;"> // 标签定义段落 <pre> // 定义预格式化的文本 <table> // 标签定义 HTML 表格 <tbody> // 标签表格主体(正文) <td> // 表格中的标准单元格 <tfoot> // 定义表格的页脚(脚注或表注) <th> // 定义表头单元格 <thead> // 标签定义表格的表头 <tr> // 定义表格中的行</code></pre><p style="text-indent: 2em;"><strong>2、行内元素 inline</strong></p><p style="text-indent: 2em;">行内元素不可以设置宽(width)和高(height),但可以与其他行内元素位于同一行,行内元素内一般不可以包含块级元素。行内元素的高度一般由元素内部的字体大小决定,宽度由内容的长度控制。 行内元素有以下特点:</p>不会独占一行,相邻的行内元素会排列在同一行里,直到一行排不下才会自动换行,其宽度随元素的内容而变化;高宽无效,对外边距(margin)和内边距(padding)仅设置左右方向有效 上下无效;设置行高有效,等同于给父级元素设置行高;元素的宽度就是它包含的文字或图片的宽度,不可改变;行内元素中不能放块级元素,a 链接里面不能再放链接。<pre class="wp-block-preformatted"><code> <a> // 标签可定义锚 <abbr> // 表示一个缩写形式 <acronym> // 定义只取首字母缩写 <b> // 字体加粗 <bdo> // 可覆盖默认的文本方向 <big> // 大号字体加粗 <br> // 换行 <cite> // 引用进行定义 <code> // 定义计算机代码文本 <dfn> // 定义一个定义项目 <em> // 定义为强调的内容 <i> // 斜体文本效果 <kbd> // 定义键盘文本 <label> // 标签为 input 元素定义标注(标记) <q> // 定义短的引用 <samp> // 定义样本文本 <select> // 创建单选或多选菜单 <small> // 呈现小号字体效果 <span> // 组合文档中的行内元素 <strong> // 加粗 <sub> // 定义下标文本 <sup> // 定义上标文本 <textarea> // 多行的文本输入控件 <tt> // 打字机或者等宽的文本效果 <var> // 定义变量</code></pre><p style="text-indent: 2em;"><strong>3、行内块级元素 inline-block</strong></p><p style="text-indent: 2em;">行内块级元素,它既具有块级元素的特点,也有行内元素的特点,它可以自由设置元素宽度和高度,也可以在一行中放置多个行内块级元素。比如:input、img就是行内块级元素,它可设置高宽以及一行多个。具体特点如下:</p>高度、行高、外边距以及内边距都可以控制;默认宽度就是它本身内容的宽度,不独占一行,但是之间会有空白缝隙,设置它上一级的 font-size 为 0,才会消除间隙。<pre class="wp-block-preformatted"><code><button> <input> <textarea> <select> <img></code></pre><p style="text-indent: 2em;"><strong>4、元素类型转换 display</strong></p><strong>display:block</strong> ,定义元素为块级元素<strong>display : inline </strong>,定义元素为行内元素<strong>display:inline-block</strong>,定义元素为行内块级元素<p style="text-indent: 2em;"><strong>5、总结</strong></p><p style="text-indent: 2em;">不管块级元素还是行内元素,区别:一是排列方式,二是宽高边距设置,三是默认宽度。</p>块级元素会独占一行,而内联元素和内联块元素则会在一行内显示;块级元素和内联块元素可设置 width、height 属性,而内联元素设置无效;块级元素的 width 默认为 100%,而内联元素则是根据其自身的内容或子元素来决定其宽度;<p style="text-indent: 2em;">而行内块级元素又同时拥有块级元素和行内元素的特点。</p><p style="text-indent: 2em;"><strong><em>延伸阅读1:CSS简介</em></strong></p><p style="text-indent: 2em;">层叠样式表(英文全称:Cascading Style Sheets)是一种用来表现HTML(标准通用标记语言的一个应用)或XML(标准通用标记语言的一个子集)等文件样式的计算机语言。CSS不仅可以静态地修饰网页,还可以配合各种脚本语言动态地对网页各元素进行格式化。</p> <div id="hnplztr5n" class="con-left-bottom"> 声明:本站稿件版权均属千锋教育所有,未经许可不得擅自转载。 </div> <!-- 表单 --> <div id="hnplztr5n" class="left-form" style="display: none;"> <div id="hnplztr5n" class="left-form-left"> <h3>10年以上业内强师集结,手把手带你蜕变精英</h3> <div id="hnplztr5n" class="list-form-item"> <i class="ypfont yp-name"></i> <input type="text" placeholder="您的姓名" name="realname" id="realname" autocomplete="off" /> </div> <div id="hnplztr5n" class="list-form-item list-form-item2"> <i class="ypfont yp-shouji"></i> <input type="text" placeholder="您的电话" name="realphone" id="phone" autocomplete="off" /> </div> <h4>请您保持通讯畅通,专属学习老师24小时内将与您1V1沟通</h4> <div id="hnplztr5n" class="list-submit seo-submit"> 免费领取<br /><i class="ypfont yp-dianjitianjia"></i> </div> </div> <div id="hnplztr5n" class="left-form-right"> <h3>今日已有<span>369</span>人领取成功</h3> <div id="hnplztr5n" class="swiper-container swiper-phone swiper-no-swiping"> <div id="hnplztr5n" class="swiper-wrapper"> <div id="hnplztr5n" class="swiper-slide"> 刘同学 138****2860 刚刚成功领取 </div> <div id="hnplztr5n" class="swiper-slide"> 王同学 131****2015 刚刚成功领取 </div> <div id="hnplztr5n" class="swiper-slide"> 张同学 133****4652 刚刚成功领取 </div> <div id="hnplztr5n" class="swiper-slide"> 李同学 135****8607 刚刚成功领取 </div> <div id="hnplztr5n" class="swiper-slide"> 杨同学 132****5667 刚刚成功领取 </div> <div id="hnplztr5n" class="swiper-slide"> 岳同学 134****6652 刚刚成功领取 </div> <div id="hnplztr5n" class="swiper-slide"> 梁同学 157****2950 刚刚成功领取 </div> <div id="hnplztr5n" class="swiper-slide"> 刘同学 189****1015 刚刚成功领取 </div> <div id="hnplztr5n" class="swiper-slide"> 张同学 155****4678 刚刚成功领取 </div> <div id="hnplztr5n" class="swiper-slide"> 邹同学 139****2907 刚刚成功领取 </div> <div id="hnplztr5n" class="swiper-slide"> 董同学 138****2867 刚刚成功领取 </div> <div id="hnplztr5n" class="swiper-slide"> 周同学 136****3602 刚刚成功领取 </div> </div> </div> </div> </div> <div id="hnplztr5n" class="c_page_bottom"> <a href="http://www.rppnsyf.cn/ganhuo/207370.html" target="_blank" class="c_page_bottom_item"> <div id="hnplztr5n" class="c_page_bottom_item_up"> <img src="/tywzt/tongyong6.jpg" alt="" /> </div> <div id="hnplztr5n" class="c_page_bottom_item_txt"> <p><i class="icon icon-xiajiantou arrowLeft"></i>上一篇</p> <span>Ecoinvent数据库中,Cut-off、Conseq和APOS三种类型的数据使用区别在哪儿?</span> </div> </a> <a href="http://www.rppnsyf.cn/ganhuo/207411.html" target="_blank" class="c_page_bottom_item"> <div id="hnplztr5n" class="c_page_bottom_item_next"> <img src="/tywzt/ty41.jpg" alt="" /> </div> <div id="hnplztr5n" class="c_page_bottom_item_txt"> <p>下一篇<i class="icon icon-xiajiantou"></i></p> <span>什么是 Docker、镜像、编排?</span> </div> </a> </div> </div> <a href="javascript:;" onclick="open53_pc()" class="left-ad"> <img src="/imgs2022/form-ad.jpg" alt="" /></a> <div id="hnplztr5n" class="article"> <div id="hnplztr5n" class="article-left"> <h3 class="">猜你喜欢<i>LIKE</i></h3> <div id="hnplztr5n" class="article-item"> <a class="" href="http://www.rppnsyf.cn/ganhuo/208319.html" target="_blank"> <div id="hnplztr5n" class="article-item-pic"> <img src="/tywzt/ty61.jpg" alt="" /> </div> <div id="hnplztr5n" class="article-item-info"> <h4>Django限制用户上传文件格式与大小的优异处理方式是什么?</h4> <span ><i class="ypfont yp-shijian"></i> 2023-10-14 </span> </div> </a> <a class="" href="http://www.rppnsyf.cn/ganhuo/208221.html" target="_blank"> <div id="hnplztr5n" class="article-item-pic"> <img src="/tywzt/ty48.jpg" alt="" /> </div> <div id="hnplztr5n" class="article-item-info"> <h4>强引用、软引用、弱引用、幻象引用有什么区别?</h4> <span ><i class="ypfont yp-shijian"></i> 2023-10-14 </span> </div> </a> <a class="" href="http://www.rppnsyf.cn/ganhuo/208182.html" target="_blank"> <div id="hnplztr5n" class="article-item-pic"> <img src="/tywzt/ty66.jpg" alt="" /> </div> <div id="hnplztr5n" class="article-item-info"> <h4>正向代理与反向代理有什么区别?</h4> <span ><i class="ypfont yp-shijian"></i> 2023-10-14 </span> </div> </a> </div> </div> <div id="hnplztr5n" class="article-right"> <h3>最新文章<i>NEW</i></h3> <div id="hnplztr5n" class="article-item"> <a class="" href="http://www.rppnsyf.cn/ganhuo/208374.html" target="_blank"> <div id="hnplztr5n" class="article-item-pic"> <img src="/tywzt/tongyong11.jpg" alt="" /> </div> <div id="hnplztr5n" class="article-item-info"> <h4>python 在cmd 下执行脚本语句和在python shell 中的&gt;&gt;&gt;下执行语句有什么区别?</h4> <span ><i class="ypfont yp-shijian"></i> 2023-10-14 </span> </div> </a> <a class="" href="http://www.rppnsyf.cn/ganhuo/208359.html" target="_blank"> <div id="hnplztr5n" class="article-item-pic"> <img src="/tywzt/ty44.jpg" alt="" /> </div> <div id="hnplztr5n" class="article-item-info"> <h4>Fortran语言中read*,和read(*,*)的区别?</h4> <span ><i class="ypfont yp-shijian"></i> 2023-10-14 </span> </div> </a> <a class="" href="http://www.rppnsyf.cn/ganhuo/208297.html" target="_blank"> <div id="hnplztr5n" class="article-item-pic"> <img src="/tywzt/ty61.jpg" alt="" /> </div> <div id="hnplztr5n" class="article-item-info"> <h4>Python单引号与双引号区别?</h4> <span ><i class="ypfont yp-shijian"></i> 2023-10-14 </span> </div> </a> </div> </div> </div> <div id="hnplztr5n" class="article-hot"> <div id="hnplztr5n" class="article-tit-box"> <h3 class="art-tit"> 相关推荐<span id="hnplztr5n" class="art-hot">HOT</span> </h3> <a href="javascript:;" onclick="open53_pc()">更多>></a> </div> <div id="hnplztr5n" class="art-con"> <a href="http://www.rppnsyf.cn/ganhuo/208243.html" target="_blank" class="art-item"> <div id="hnplztr5n" class="art-item-img"> <img src="/tywzt/ty44.jpg" alt="" /> </div> <div id="hnplztr5n" class="art-item-info"> <h4>Python的优缺点有哪些?</h4> <p> 一、Python的优点1、简单易学Python的语法简单明了,易于理解和学习,非常适合初学者。2、丰富的第三方库Python拥有丰富的第三方库,可以快速开...<span >详情>></span > </p> <span>2023-10-14 20:19:16</span> </div> </a> <a href="http://www.rppnsyf.cn/ganhuo/208049.html" target="_blank" class="art-item"> <div id="hnplztr5n" class="art-item-img"> <img src="/tywzt/ty42.jpg" alt="" /> </div> <div id="hnplztr5n" class="art-item-info"> <h4>B+树查询的稳定性为什么重要?</h4> <p> 一、B+树查询的稳定性为什么重要首先最大的优势还是磁盘IO和范围,从我个人的看法看,稳定性(每次查询必须从根走到叶子节点)这意味行为可预估...<span >详情>></span > </p> <span>2023-10-14 17:40:38</span> </div> </a> <a href="http://www.rppnsyf.cn/ganhuo/208027.html" target="_blank" class="art-item"> <div id="hnplztr5n" class="art-item-img"> <img src="/tywzt/ty41.jpg" alt="" /> </div> <div id="hnplztr5n" class="art-item-info"> <h4>进程如何找到pgd页表,页表的数据结构是什么?</h4> <p> 一、进程找到pgd页表的方法在Linux内核中,每个进程都有一个指向其PGD的指针pgd,该指针位于进程描述符结构体(task_struct)中。进程可以通过...<span >详情>></span > </p> <span>2023-10-14 17:24:21</span> </div> </a> <a href="http://www.rppnsyf.cn/ganhuo/207969.html" target="_blank" class="art-item"> <div id="hnplztr5n" class="art-item-img"> <img src="/tywzt/ty39.jpg" alt="" /> </div> <div id="hnplztr5n" class="art-item-info"> <h4>什么是单链表就地逆置?</h4> <p> 一、什么是单链表就地逆置单链表就地逆置是一种常见的链表操作,它通过调整链表节点之间的指针关系,将单链表中的元素原地进行逆序排列。这种操...<span >详情>></span > </p> <span>2023-10-14 16:35:41</span> </div> </a> </div> </div> </div> <div id="hnplztr5n" class="con-right" id="fixTop"> <div id="hnplztr5n" class="con-right-rywd"> <h3 class="rywd-tit"> <i class="bjiconfont bjicon-weinituijian"></i>热门推荐 </h3> <div id="hnplztr5n" class="swiper3"> <a href="http://www.rppnsyf.cn/ganhuo/208374.html" target="_blank"> <div id="hnplztr5n" class="ypfont yp-zhiding"></div> <p>python 在cmd 下执行脚本语句和在python shell 中的&gt;&gt;&gt;下执行语句有什么区别?</p> <span id="hnplztr5n" class="a11">沸</span > </a> <a href="http://www.rppnsyf.cn/ganhuo/208359.html" target="_blank"> <div id="hnplztr5n" class="ypfont yp-1"></div> <p>Fortran语言中read*,和read(*,*)的区别?</p> <span id="hnplztr5n" class="a21">热</span > </a> <a href="http://www.rppnsyf.cn/ganhuo/208336.html" target="_blank"> <div id="hnplztr5n" class="ypfont yp-2"></div> <p>边缘计算与CDN的区别是什么?</p> <span id="hnplztr5n" class="a31">热</span > </a> <a href="http://www.rppnsyf.cn/ganhuo/208319.html" target="_blank"> <div id="hnplztr5n" class="ypfont yp-3"></div> <p>Django限制用户上传文件格式与大小的优异处理方式是什么?</p> <span id="hnplztr5n" class="a41">新</span > </a> <a href="http://www.rppnsyf.cn/ganhuo/208297.html" target="_blank"> <div id="hnplztr5n" class="a5"> 4 </div> <p>Python单引号与双引号区别?</p> </a> <a href="http://www.rppnsyf.cn/ganhuo/208278.html" target="_blank"> <div id="hnplztr5n" class="a6"> 5 </div> <p>为什么iOS始终不支持应用双开深度分析给你答案?</p> </a> <a href="http://www.rppnsyf.cn/ganhuo/208259.html" target="_blank"> <div id="hnplztr5n" class="a7"> 6 </div> <p>高并发、高吞吐是什么?</p> </a> <a href="http://www.rppnsyf.cn/ganhuo/208243.html" target="_blank"> <div id="hnplztr5n" class="a8"> 7 </div> <p>Python的优缺点有哪些?</p> </a> <a href="http://www.rppnsyf.cn/ganhuo/208221.html" target="_blank"> <div id="hnplztr5n" class="a9"> 8 </div> <p>强引用、软引用、弱引用、幻象引用有什么区别?</p> </a> <a href="http://www.rppnsyf.cn/ganhuo/208205.html" target="_blank"> <div id="hnplztr5n" class="a10"> 9 </div> <p>Android传值Intent和Bundle区别?</p> </a> <a href="http://www.rppnsyf.cn/ganhuo/208182.html" target="_blank"> <div id="hnplztr5n" class="a11"> 10 </div> <p>正向代理与反向代理有什么区别?</p> </a> <a href="http://www.rppnsyf.cn/ganhuo/208149.html" target="_blank"> <div id="hnplztr5n" class="a12"> 11 </div> <p>HTML、CSS、JavaScript分别实现什么功能?</p> </a> <a href="http://www.rppnsyf.cn/ganhuo/208126.html" target="_blank"> <div id="hnplztr5n" class="a13"> 12 </div> <p>doc文件用什么软件编辑?</p> </a> <a href="http://www.rppnsyf.cn/ganhuo/208107.html" target="_blank"> <div id="hnplztr5n" class="a14"> 13 </div> <p>平均查找长度与时间复杂度的区别?</p> </a> </div> </div> <!-- 行业资讯 --> <div id="hnplztr5n" class="con-right-rywd"> <h3 class="tk-tit"> <a class="left" href="/info/" target="_blank" ><i class="bjiconfont bjicon-hangyezixun"></i>行业资讯</a > <a href="/info/" target="_blank">更多&gt;&gt;</a> </h3> <div id="hnplztr5n" class="hangyezixun"> <a href="http://www.rppnsyf.cn/info/158370.html" target="_blank"> <div id="hnplztr5n" class="img-box"> <img src="/tywzt/ty36.jpg" alt="" /> </div> <h3>成都如何选择Java培训机构</h3> </a> <a href="http://www.rppnsyf.cn/info/158369.html" target="_blank"> <div id="hnplztr5n" class="img-box"> <img src="/tywzt/ty52.jpg" alt="" /> </div> <h3>广州如何选择Java培训机构</h3> </a> <a href="http://www.rppnsyf.cn/info/158367.html" target="_blank"> <div id="hnplztr5n" class="img-box"> <img src="/tywzt/tongyong12.jpg" alt="" /> </div> <h3>成都怎么选择靠谱的Java培训机构</h3> </a> <a href="http://www.rppnsyf.cn/info/158366.html" target="_blank"> <div id="hnplztr5n" class="img-box"> <img src="/tywzt/tongyong7.jpg" alt="" /> </div> <h3>广州怎么选择靠谱的Java培训机构</h3> </a> </div> </div> <!-- 技术干货 --> <div id="hnplztr5n" class="con-right-rywd"> <h3 class="tk-tit"> <a class="left" href="/ganhuo/" target="_blank" ><i class="bjiconfont bjicon-fabujishu"></i>技术干货</a > <a href="javascript:;"></a> </h3> <div id="hnplztr5n" class="list_1EDla"> <a class="item-wrap_2oCLZ active" href="http://www.rppnsyf.cn/ganhuo/208374.html" target="_blank" ><div id="hnplztr5n" class="active-item_1Em2h"> <img class="active-item-img_3i_Tx" src="/tywzt/tongyong11.jpg" alt="" /> <div id="hnplztr5n" class="sign-index_mtI7K c-index-bg0"> <i class="bjiconfont bjicon-zhiding"></i> </div> <div id="hnplztr5n" class="content-pos_1fT0H"> <div id="hnplztr5n" class="name_2Px2N">python 在cmd 下执行脚本语句和在python shell 中的&gt;&gt;&gt;下执行语句有什么区别?</div> </div> <div id="hnplztr5n" class="c-text hot-state_NdlbW"></div> </div> <div id="hnplztr5n" class="normal_1fQqB"> <div id="hnplztr5n" class="index_k2hIU c-index-single-hot1"> <i class="bjiconfont bjicon-zhiding"></i> </div> <div id="hnplztr5n" class="content-wrap_1RisM"> <div id="hnplztr5n" class="name_2Px2N">python 在cmd 下执行脚本语句和在python shell 中的&gt;&gt;&gt;下执行语句有什么区别?</div> </div> <div id="hnplztr5n" class="c-text hot-state_NdlbW"></div></div ></a> <a class="item-wrap_2oCLZ" href="http://www.rppnsyf.cn/ganhuo/208359.html" target="_blank" ><div id="hnplztr5n" class="active-item_1Em2h"> <img class="active-item-img_3i_Tx" src="/tywzt/ty44.jpg" alt="" /> <div id="hnplztr5n" class="sign-index_mtI7K">1</div> <div id="hnplztr5n" class="content-pos_1fT0H"> <div id="hnplztr5n" class="name_2Px2N">Fortran语言中read*,和read(*,*)的区别?</div> </div> <div id="hnplztr5n" class="c-text hot-state_NdlbW hothothot2">热</div> </div> <div id="hnplztr5n" class="normal_1fQqB"> <div id="hnplztr5n" class="index_k2hIU a12">1</div> <div id="hnplztr5n" class="content-wrap_1RisM"> <div id="hnplztr5n" class="name_2Px2N">Fortran语言中read*,和read(*,*)的区别?</div> </div> <div id="hnplztr5n" class="c-text hot-state_NdlbW hothothot2">热</div> </div> </a> <a class="item-wrap_2oCLZ" href="http://www.rppnsyf.cn/ganhuo/208336.html" target="_blank" ><div id="hnplztr5n" class="active-item_1Em2h"> <img class="active-item-img_3i_Tx" src="/tywzt/ty63.jpg" alt="" /> <div id="hnplztr5n" class="sign-index_mtI7K">2</div> <div id="hnplztr5n" class="content-pos_1fT0H"> <div id="hnplztr5n" class="name_2Px2N">边缘计算与CDN的区别是什么?</div> </div> <div id="hnplztr5n" class="c-text hot-state_NdlbW hothothot3">热</div> </div> <div id="hnplztr5n" class="normal_1fQqB"> <div id="hnplztr5n" class="index_k2hIU a13">2</div> <div id="hnplztr5n" class="content-wrap_1RisM"> <div id="hnplztr5n" class="name_2Px2N">边缘计算与CDN的区别是什么?</div> </div> <div id="hnplztr5n" class="c-text hot-state_NdlbW hothothot3">热</div> </div> </a> <a class="item-wrap_2oCLZ" href="http://www.rppnsyf.cn/ganhuo/208319.html" target="_blank" ><div id="hnplztr5n" class="active-item_1Em2h"> <img class="active-item-img_3i_Tx" src="/tywzt/ty61.jpg" alt="" /> <div id="hnplztr5n" class="sign-index_mtI7K">3</div> <div id="hnplztr5n" class="content-pos_1fT0H"> <div id="hnplztr5n" class="name_2Px2N">Django限制用户上传文件格式与大小的优异处理方式是什么?</div> </div> <div id="hnplztr5n" class="c-text hot-state_NdlbW hothothot4">热</div> </div> <div id="hnplztr5n" class="normal_1fQqB"> <div id="hnplztr5n" class="index_k2hIU a14">3</div> <div id="hnplztr5n" class="content-wrap_1RisM"> <div id="hnplztr5n" class="name_2Px2N">Django限制用户上传文件格式与大小的优异处理方式是什么?</div> </div> <div id="hnplztr5n" class="c-text hot-state_NdlbW hothothot4">热</div> </div> </a> <a class="item-wrap_2oCLZ" href="http://www.rppnsyf.cn/ganhuo/208297.html" target="_blank" ><div id="hnplztr5n" class="active-item_1Em2h"> <img class="active-item-img_3i_Tx" src="/tywzt/ty61.jpg" alt="" /> <div id="hnplztr5n" class="sign-index_mtI7K">4</div> <div id="hnplztr5n" class="content-pos_1fT0H"> <div id="hnplztr5n" class="name_2Px2N">Python单引号与双引号区别?</div> </div> <div id="hnplztr5n" class="c-text hot-state_NdlbW hothothot5">热</div> </div> <div id="hnplztr5n" class="normal_1fQqB"> <div id="hnplztr5n" class="index_k2hIU a15">4</div> <div id="hnplztr5n" class="content-wrap_1RisM"> <div id="hnplztr5n" class="name_2Px2N">Python单引号与双引号区别?</div> </div> <div id="hnplztr5n" class="c-text hot-state_NdlbW hothothot5">热</div> </div> </a> <a class="item-wrap_2oCLZ" href="http://www.rppnsyf.cn/ganhuo/208278.html" target="_blank" ><div id="hnplztr5n" class="active-item_1Em2h"> <img class="active-item-img_3i_Tx" src="/tywzt/tongyong17.jpg" alt="" /> <div id="hnplztr5n" class="sign-index_mtI7K">5</div> <div id="hnplztr5n" class="content-pos_1fT0H"> <div id="hnplztr5n" class="name_2Px2N">为什么iOS始终不支持应用双开深度分析给你答案?</div> </div> <div id="hnplztr5n" class="c-text hot-state_NdlbW hothothot6">热</div> </div> <div id="hnplztr5n" class="normal_1fQqB"> <div id="hnplztr5n" class="index_k2hIU a16">5</div> <div id="hnplztr5n" class="content-wrap_1RisM"> <div id="hnplztr5n" class="name_2Px2N">为什么iOS始终不支持应用双开深度分析给你答案?</div> </div> <div id="hnplztr5n" class="c-text hot-state_NdlbW hothothot6">热</div> </div> </a> <a class="item-wrap_2oCLZ" href="http://www.rppnsyf.cn/ganhuo/208259.html" target="_blank" ><div id="hnplztr5n" class="active-item_1Em2h"> <img class="active-item-img_3i_Tx" src="/tywzt/ty61.jpg" alt="" /> <div id="hnplztr5n" class="sign-index_mtI7K">6</div> <div id="hnplztr5n" class="content-pos_1fT0H"> <div id="hnplztr5n" class="name_2Px2N">高并发、高吞吐是什么?</div> </div> <div id="hnplztr5n" class="c-text hot-state_NdlbW hothothot7">热</div> </div> <div id="hnplztr5n" class="normal_1fQqB"> <div id="hnplztr5n" class="index_k2hIU a17">6</div> <div id="hnplztr5n" class="content-wrap_1RisM"> <div id="hnplztr5n" class="name_2Px2N">高并发、高吞吐是什么?</div> </div> <div id="hnplztr5n" class="c-text hot-state_NdlbW hothothot7">热</div> </div> </a> </div> </div> <!-- 技术问答 --> <div id="hnplztr5n" class="con-right-rywd"> <h3 class="tk-tit"> <a class="left" href="/wenda/" target="_blank" ><i class="bjiconfont bjicon-licaiwenda"></i>技术问答</a > <a href="javascript:;" onclick="open53_pc()" >在线提问&gt;&gt;</a > </h3> <div id="hnplztr5n" class="ans-ques"> <a href="http://www.rppnsyf.cn/wenda/205706.html" target="_blank"> <h3> <i class="bjiconfont bjicon-wenda3"></i>张同学在线提问 </h3> <h4>pythonyield关键字的使用方法</h4> <p> Python中的yield关键字是一个强大的工具,用...<span>详情</span> </p> </a> <a href="http://www.rppnsyf.cn/wenda/186870.html" target="_blank"> <h3> <i class="bjiconfont bjicon-wenda3"></i>刘同学在线提问 </h3> <h4>python处理json数组的方法</h4> <p> 在Python中,处理JSON数组通常需要解析JSON字...<span>详情</span> </p> </a> </div> </div> <!-- 师资 --> <div id="hnplztr5n" class="con-right-rywd"> <h3 class="tk-tit"> <a class="left" href="javascript:;" onclick="open53_pc()" ><i class="bjiconfont bjicon-shiziduiwu1"></i>师资团队</a ><a href="javascript:;" onclick="open53_pc()">更多&gt;&gt;</a> </h3> <div id="hnplztr5n" class="swiper-container swiper-teach"> <div id="hnplztr5n" class="swiper-wrapper"> <div id="hnplztr5n" class="swiper-slide"> <a href="javascript:;" onclick="open53_pc()" class="teach-item" > <div id="hnplztr5n" class="teach-left"> <img src="/2022/0629/1656491710218.png" alt="" /> </div> <div id="hnplztr5n" class="teach-right"> <h3> <i class="ypfont yp-jiaoshizigezheng"></i>陆神 </h3> <p> <span>原去哪儿网高级架构师</span> </p> <p><span>北京大学计算机系毕业</span></p> <span>HTML5学科教研总监</span> </div> </a> </div> <div id="hnplztr5n" class="swiper-slide"> <a href="javascript:;" onclick="open53_pc()" class="teach-item" > <div id="hnplztr5n" class="teach-left"> <img src="/2022/0629/1656491687542.png" alt="" /> </div> <div id="hnplztr5n" class="teach-right"> <h3> <i class="ypfont yp-jiaoshizigezheng"></i>千锋威哥 </h3> <p> <span>OCP认证专家</span> </p> <p><span>15年以上开发经验</span></p> <span>Java学科首席技术官</span> </div> </a> </div> <div id="hnplztr5n" class="swiper-slide"> <a href="javascript:;" onclick="open53_pc()" class="teach-item" > <div id="hnplztr5n" class="teach-left"> <img src="/2022/0629/1656491754593.png" alt="" /> </div> <div id="hnplztr5n" class="teach-right"> <h3> <i class="ypfont yp-jiaoshizigezheng"></i>宋宋 </h3> <p> <span>原阿里后端架构师</span> </p> <p><span>北京邮电大学硕士</span></p> <span>Python学科首席技术官</span> </div> </a> </div> <div id="hnplztr5n" class="swiper-slide"> <a href="javascript:;" onclick="open53_pc()" class="teach-item" > <div id="hnplztr5n" class="teach-left"> <img src="/2022/0928/1664347229983.png" alt="" /> </div> <div id="hnplztr5n" class="teach-right"> <h3> <i class="ypfont yp-jiaoshizigezheng"></i>卢老师 </h3> <p> <span>北京大学博士后</span> </p> <p><span>北京科技大学博士</span></p> <span>人工智能学科总监</span> </div> </a> </div> <div id="hnplztr5n" class="swiper-slide"> <a href="javascript:;" onclick="open53_pc()" class="teach-item" > <div id="hnplztr5n" class="teach-left"> <img src="/2022/0407/1649309313781.png" alt="" /> </div> <div id="hnplztr5n" class="teach-right"> <h3> <i class="ypfont yp-jiaoshizigezheng"></i>索尔 </h3> <p> <span>原阿里后端架构师</span> </p> <p><span>浙工大计算机系毕业</span></p> <span>Java学科高级讲师</span> </div> </a> </div> <div id="hnplztr5n" class="swiper-slide"> <a href="javascript:;" onclick="open53_pc()" class="teach-item" > <div id="hnplztr5n" class="teach-left"> <img src="/2022/0629/1656491588909.png" alt="" /> </div> <div id="hnplztr5n" class="teach-right"> <h3> <i class="ypfont yp-jiaoshizigezheng"></i>jackfrued </h3> <p> <span>曾任职华为成都研究所</span> </p> <p><span>计算机应用技术博士</span></p> <span>Python学科教学主管</span> </div> </a> </div> </div> </div> </div> <!-- 快速通道 --> <div id="hnplztr5n" class="con-right-rywd idkstd"> <h3 class="tk-tit"> <a class="left" href="javascript:;" onclick="open53_pc()" ><i class="ypfont yp-rocket-full"></i>快速通道</a > <a href="javascript:;" onclick="open53_pc()">更多&gt;&gt;</a> </h3> <ul class="kstd"> <li> <h3>课程介绍</h3> <a href="javascript:;" onclick="open53_pc()">点击获取大纲</a> </li> <li> <h3>就业前景</h3> <a href="javascript:;" onclick="open53_pc()">查看就业薪资</a> </li> <li> <h3>学习费用</h3> <a href="javascript:;" onclick="open53_pc()">了解课程价格</a> </li> <li> <h3>优惠活动</h3> <a href="javascript:;" onclick="open53_pc()">领取优惠券</a> </li> <li> <h3>学习资源</h3> <a href="javascript:;" onclick="open53_pc()">领3000G教程</a> </li> <li> <h3>师资团队</h3> <a href="javascript:;" onclick="open53_pc()">了解师资团队</a> </li> <li> <h3>实战项目</h3> <a href="javascript:;" onclick="open53_pc()">获取项目源码</a> </li> <li> <h3>开班地区</h3> <a href="javascript:;" onclick="open53_pc()">查看来校路线</a> </li> </ul> </div> </div> </div> </div> <!-- 开班信息 --> <div id="hnplztr5n" class="kbxx base"> <h4 class="kbxx-tit"> <span>最新开班信息</span> <a href="javascript:;" onclick="open53_pc()">更多>></a> </h4> <ul class="kbxx-con"></ul> </div> <!-- 网友热搜 --> <div id="hnplztr5n" class="wyrs base"> <h4 class="kbxx-tit"> <span>网友热搜</span> <a href="javascript:;" onclick="open53_pc()">更多>></a> </h4> <div id="hnplztr5n" class="wyrs-con"> <a href="javascript:;" onclick="open53_pc()">IT行业年龄有限制吗</a> <a href="javascript:;" onclick="open53_pc()">女生学IT</a> <a href="javascript:;" onclick="open53_pc()">Java薪资待遇</a> <a href="javascript:;" onclick="open53_pc()">零基础Web培训</a> <a href="javascript:;" onclick="open53_pc()">Python就业</a> <a href="javascript:;" onclick="open53_pc()">如何学UI设计</a> <a href="javascript:;" onclick="open53_pc()">大数据学习路线</a> <a href="javascript:;" onclick="open53_pc()" style="margin-right: 0" >java培训学费</a > <a href="javascript:;" onclick="open53_pc()"> 软件测试培训</a> <a href="javascript:;" onclick="open53_pc()">转行学Linux</a> <a href="javascript:;" onclick="open53_pc()">网络安全基础知识</a> <a href="javascript:;" onclick="open53_pc()">网络营销培训</a> <a href="javascript:;" onclick="open53_pc()">unity培训</a> <a href="javascript:;" onclick="open53_pc()">30岁还能学it吗</a> <a href="javascript:;" onclick="open53_pc()">大数据技术学什么</a> <a href="javascript:;" onclick="open53_pc()" style="margin-right: 0" >python培训费</a > </div> </div> </div> <style> .edu-footer { padding-top: 60px; background: #0467fb url(/wzt/foot-bg.png) no-repeat; background-size: 100% 100%; box-sizing: border-box; } .edu-footer .base { display: flex; height: 210px; } .edu-footer .base .con-left { width: 306px; border-right: 1px solid rgba(255, 255, 255, 0.2); color: #fff; height: 178px; } .edu-footer .base .con-left .edu-footer-logo { width: 221px; } .edu-footer .base .con-left .edu-footer-sologan { margin: 12px 0 26px 0; font-size: 16px; line-height: 16px; letter-spacing: 0.5em; } .edu-footer .base .con-left .edu-footer-phoneNumber { font-size: 25px; height: 23px; line-height: 23px; } .edu-footer .base .con-left .edu-footer-phoneNumber .icon { font-size: 26px; margin-right: 8px; } .edu-footer .base .con-left .edu-footer-phoneNumber a { width: 130px; height: 30px; border-radius: 4px; border: solid 1px #ffffff; display: block; color: #ffffff; font-size: 14px; line-height: 30px; text-align: center; margin-left: 36px; margin-top: 10px; } .edu-footer .base .con-left .edu-footer-phoneNumber a:hover { background: #fff; color: #326cf6; } .edu-footer .base .con-right { width: 803px; display: flex; padding-left: 67px; } .edu-footer .base .con-right .edu-footer-about-links { display: flex; } .edu-footer .base .con-right .edu-footer-about-links .list { margin-right: 65px; text-align: center; } .edu-footer .base .con-right .edu-footer-about-links .list:last-of-type { margin-right: 58px; } .edu-footer .base .con-right .edu-footer-about-links .list h4 { margin-bottom: 30px; line-height: 20px; font-size: 20px; font-weight: 600; color: #ffffff; white-space: nowrap; } .edu-footer .base .con-right .edu-footer-about-links .list ul li { height: 31px; line-height: 31px; } .edu-footer .base .con-right .edu-footer-about-links .list ul li a { color: #fff; font-size: 14px; } .edu-footer .base .con-right .edu-footer-about-links .list ul li a:hover { text-decoration: underline; } .edu-footer .base .con-right .qrcode-box { width: 191px; color: #fff; text-align: center; } .edu-footer .base .con-right .qrcode-box .qrcode { margin: auto; width: 135px; height: 135px; background: #ffffff; border-radius: 30px; box-sizing: border-box; display: flex; justify-content: center; align-items: center; } .edu-footer .base .con-right .qrcode-box .qrcode img { width: 118px; height: 118px; } .edu-footer .base .con-right .qrcode-box h4 { white-space: nowrap; margin: 16px 0 7px 0; line-height: 16px; font-size: 14px; font-weight: normal; color: #ffffff; } .edu-footer .base .con-right .qrcode-box h4 span { font-size: 14px; } .edu-footer .base .con-right .qrcode-box p { font-size: 14px; } </style> <div id="hnplztr5n" class="edu-footer"> <div id="hnplztr5n" class="base"> <div id="hnplztr5n" class="con-left"> <img src="/wzt/new-logo-white.png" alt="" class="edu-footer-logo" /> <p class="edu-footer-sologan">初心至善&nbsp;&nbsp;匠心育人</p> <p class="edu-footer-phoneNumber"> <i class="icon icon-dianhua1"></i>400-811-9990 <a href="javascript:;" onclick="open53_pc()" rel="nofollow" >24小时在线咨询</a > </p> </div> <div id="hnplztr5n" class="con-right"> <div id="hnplztr5n" class="edu-footer-about-links"> <div id="hnplztr5n" class="list1 list"> <h4>关于千锋</h4> <ul> <li> <a target="_blank" rel="nofollow" >千锋简介</a > </li> <li> <a rel="nofollow" target="_blank" >联系我们</a > </li> <li> <a target="_blank" rel="nofollow" >企业服务</a > </li> <li> <a href="/sitemap.html" target="_blank">网站地图</a> </li> </ul> </div> <div id="hnplztr5n" class="list1 list"> <h4>新闻资讯</h4> <ul> <li> <a href="/news/" target="_blank">千锋动态</a> </li> <li> <a href="/info/" target="_blank"> 行业资讯 </a> </li> <li> <a href="/smzp/" target="_blank">上门招聘</a> </li> <li> <a href="/jiuye/" target="_blank">职场就业</a> </li> </ul> </div> <div id="hnplztr5n" class="list1 list"> <h4>热点话题</h4> <ul> <li> <a href="/ganhuo/" target="_blank">IT技术干货 </a> </li> <li> <a href="/wenda/" target="_blank">IT技术问答</a> </li> <li> <a href="/peixun/" target="_blank">IT培训机构</a> </li> <li> <a href="/lingjichu/" target="_blank">零基础学IT</a> </li> </ul> </div> </div> <div id="hnplztr5n" class="qrcode-box"> <div id="hnplztr5n" class="qrcode flex-center"> <img src="/wzt/qr-code-new.png" alt="千锋教育" /> </div> <h4>千锋学习站 | <span>随时随地免费学</span></h4> </div> <div id="hnplztr5n" class="qrcode-box"> <div id="hnplztr5n" class="qrcode flex-center"> <img src="/wzt/qr-code-new2.png" alt="千锋教育" /> </div> <h4>扫一扫进入千锋手机站</h4> </div> </div> </div> </div> <div id="hnplztr5n" class="footer-link"> <div id="hnplztr5n" class="copyright"> <p class="copyright-p"> Copyright 2011-2025 <a href="javascript:;" rel="nofollow" title="千锋互联">北京千锋互联科技有限公司</a> <a rel="nofollow"> 京ICP备12003911号-3 </a> <a target="_blank" rel="nofollow" style="display: inline-block;text-decoration: none;height: 20px;line-height: 20px;"> <img src="/wzt/beian.png" />京公网安备 11010802030320号 </a> </p> <p>千锋教育 运营主体:北京千锋互联科技有限公司,属具备计算机技术培训资质的教育培训机构。</p> </div> </div> <script src="/js/jquery.min.js"></script> <script src="/js/swiper4.5.0.min.js"></script> <script src="/js/common1.js?t=1697292603"></script> <script src="/js/mo_pc_city_con.js?t=1697292603"></script> <footer> <div class="friendship-link"> <p>感谢您访问我们的网站,您可能还对以下资源感兴趣:</p> <a href="http://www.rppnsyf.cn/" title="&#51;&#48;&#48;&#20803;&#51;&#23567;&#26102;&#26381;&#21153;&#19981;&#38480;&#27425;&#25968;">&#51;&#48;&#48;&#20803;&#51;&#23567;&#26102;&#26381;&#21153;&#19981;&#38480;&#27425;&#25968;</a> <div class="friend-links"> <a href="http://www.kdcergc.cn/">&#21516;&#22478;&#38468;&#36817;&#50;&#48;&#48;&#20803;&#20108;&#32500;&#30721;</a> <a href="http://www.pvbdsq.cn/">&#38468;&#36817;&#49;&#48;&#48;&#20803;&#52;&#23567;&#26102;&#26381;&#21153;&#28909;&#32447;</a> <a href="http://www.pfdgjbj.cn/">&#19968;&#27004;&#19968;&#20964;&#20840;&#22269;&#20449;&#24687;&#24179;&#21488;</a> <a href="http://www.dynamicfusen.cn/">&#50;&#48;&#48;&#22359;&#38065;&#51;&#23567;&#26102;&#19978;&#38376;&#20108;&#32500;&#30721;</a> <a href="http://www.cikehu.cn/">&#32422;&#38468;&#36817;&#23398;&#29983;&#53;&#48;&#19968;&#27425;</a> </div> </div> </footer> <script> (function(){ var bp = document.createElement('script'); var curProtocol = window.location.protocol.split(':')[0]; if (curProtocol === 'https') { bp.src = 'https://zz.bdstatic.com/linksubmit/push.js'; } else { bp.src = 'http://push.zhanzhang.baidu.com/push.js'; } var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(bp, s); })(); </script> </body><div id="fjvdt" class="pl_css_ganrao" style="display: none;"><thead id="fjvdt"></thead><legend id="fjvdt"><track id="fjvdt"><menuitem id="fjvdt"><strong id="fjvdt"></strong></menuitem></track></legend><track id="fjvdt"></track><thead id="fjvdt"><listing id="fjvdt"></listing></thead><th id="fjvdt"></th><sup id="fjvdt"><u id="fjvdt"></u></sup><progress id="fjvdt"></progress><meter id="fjvdt"></meter><pre id="fjvdt"><dfn id="fjvdt"><p id="fjvdt"><th id="fjvdt"></th></p></dfn></pre><sub id="fjvdt"><ol id="fjvdt"><form id="fjvdt"><thead id="fjvdt"></thead></form></ol></sub><strong id="fjvdt"><video id="fjvdt"></video></strong><nobr id="fjvdt"><span id="fjvdt"><strong id="fjvdt"><video id="fjvdt"></video></strong></span></nobr><thead id="fjvdt"><listing id="fjvdt"></listing></thead><small id="fjvdt"><address id="fjvdt"></address></small><track id="fjvdt"><p id="fjvdt"><strong id="fjvdt"><mark id="fjvdt"></mark></strong></p></track><dfn id="fjvdt"><legend id="fjvdt"><u id="fjvdt"><ol id="fjvdt"></ol></u></legend></dfn><thead id="fjvdt"><listing id="fjvdt"></listing></thead><var id="fjvdt"></var><mark id="fjvdt"><dl id="fjvdt"><optgroup id="fjvdt"><form id="fjvdt"></form></optgroup></dl></mark><meter id="fjvdt"></meter><form id="fjvdt"><font id="fjvdt"><listing id="fjvdt"><output id="fjvdt"></output></listing></font></form><acronym id="fjvdt"><dfn id="fjvdt"></dfn></acronym><var id="fjvdt"></var><pre id="fjvdt"><ruby id="fjvdt"></ruby></pre><dfn id="fjvdt"><sub id="fjvdt"></sub></dfn><strong id="fjvdt"></strong><ol id="fjvdt"><tt id="fjvdt"></tt></ol><output id="fjvdt"><label id="fjvdt"></label></output><font id="fjvdt"></font><p id="fjvdt"></p><font id="fjvdt"><strong id="fjvdt"><output id="fjvdt"><div id="fjvdt"></div></output></strong></font><mark id="fjvdt"><label id="fjvdt"><rp id="fjvdt"><form id="fjvdt"></form></rp></label></mark><sup id="fjvdt"><th id="fjvdt"></th></sup><legend id="fjvdt"><u id="fjvdt"><thead id="fjvdt"><nobr id="fjvdt"></nobr></thead></u></legend><pre id="fjvdt"><em id="fjvdt"><pre id="fjvdt"><ruby id="fjvdt"></ruby></pre></em></pre><div id="fjvdt"><var id="fjvdt"><big id="fjvdt"><i id="fjvdt"></i></big></var></div><dfn id="fjvdt"><ruby id="fjvdt"></ruby></dfn><nobr id="fjvdt"><ins id="fjvdt"><pre id="fjvdt"><tt id="fjvdt"></tt></pre></ins></nobr><big id="fjvdt"><i id="fjvdt"></i></big><menuitem id="fjvdt"><strike id="fjvdt"></strike></menuitem><var id="fjvdt"><sub id="fjvdt"></sub></var><pre id="fjvdt"><b id="fjvdt"></b></pre><big id="fjvdt"></big><label id="fjvdt"><u id="fjvdt"></u></label><form id="fjvdt"><pre id="fjvdt"></pre></form><dl id="fjvdt"><listing id="fjvdt"><legend id="fjvdt"><label id="fjvdt"></label></legend></listing></dl><legend id="fjvdt"><em id="fjvdt"></em></legend><em id="fjvdt"></em><ol id="fjvdt"><nobr id="fjvdt"></nobr></ol><strike id="fjvdt"><ruby id="fjvdt"></ruby></strike><ins id="fjvdt"></ins><legend id="fjvdt"><track id="fjvdt"><menuitem id="fjvdt"><nobr id="fjvdt"></nobr></menuitem></track></legend><ins id="fjvdt"><dfn id="fjvdt"></dfn></ins><dfn id="fjvdt"><tt id="fjvdt"><span id="fjvdt"><rp id="fjvdt"></rp></span></tt></dfn><optgroup id="fjvdt"></optgroup><ruby id="fjvdt"><big id="fjvdt"></big></ruby><menuitem id="fjvdt"><ol id="fjvdt"></ol></menuitem><th id="fjvdt"><thead id="fjvdt"></thead></th><dfn id="fjvdt"><sup id="fjvdt"><th id="fjvdt"><strike id="fjvdt"></strike></th></sup></dfn><big id="fjvdt"></big><video id="fjvdt"><legend id="fjvdt"></legend></video><optgroup id="fjvdt"><menuitem id="fjvdt"><strike id="fjvdt"><tt id="fjvdt"></tt></strike></menuitem></optgroup><ins id="fjvdt"></ins><video id="fjvdt"><meter id="fjvdt"><u id="fjvdt"><thead id="fjvdt"></thead></u></meter></video><i id="fjvdt"><dfn id="fjvdt"></dfn></i><pre id="fjvdt"><label id="fjvdt"><big id="fjvdt"><i id="fjvdt"></i></big></label></pre><label id="fjvdt"><track id="fjvdt"><p id="fjvdt"><strong id="fjvdt"></strong></p></track></label><div id="fjvdt"><ruby id="fjvdt"><big id="fjvdt"><strong id="fjvdt"></strong></big></ruby></div><strike id="fjvdt"><nobr id="fjvdt"><em id="fjvdt"><dfn id="fjvdt"></dfn></em></nobr></strike><legend id="fjvdt"><ruby id="fjvdt"></ruby></legend><p id="fjvdt"><thead id="fjvdt"><ol id="fjvdt"><nobr id="fjvdt"></nobr></ol></thead></p><dl id="fjvdt"></dl><track id="fjvdt"><sub id="fjvdt"><th id="fjvdt"><mark id="fjvdt"></mark></th></sub></track><tt id="fjvdt"><thead id="fjvdt"></thead></tt><legend id="fjvdt"><label id="fjvdt"></label></legend><strong id="fjvdt"><small id="fjvdt"></small></strong><progress id="fjvdt"><label id="fjvdt"></label></progress><strong id="fjvdt"><rp id="fjvdt"><progress id="fjvdt"><track id="fjvdt"></track></progress></rp></strong><form id="fjvdt"></form><dfn id="fjvdt"><ruby id="fjvdt"><style id="fjvdt"><rp id="fjvdt"></rp></style></ruby></dfn><dfn id="fjvdt"><sup id="fjvdt"><rp id="fjvdt"><thead id="fjvdt"></thead></rp></sup></dfn><style id="fjvdt"></style><mark id="fjvdt"><thead id="fjvdt"></thead></mark><ol id="fjvdt"><mark id="fjvdt"></mark></ol><menuitem id="fjvdt"><strike id="fjvdt"><ins id="fjvdt"><acronym id="fjvdt"></acronym></ins></strike></menuitem><thead id="fjvdt"><rp id="fjvdt"></rp></thead><mark id="fjvdt"></mark><div id="fjvdt"></div><output id="fjvdt"><label id="fjvdt"><rp id="fjvdt"><form id="fjvdt"></form></rp></label></output><u id="fjvdt"><thead id="fjvdt"></thead></u><form id="fjvdt"><strong id="fjvdt"><progress id="fjvdt"><legend id="fjvdt"></legend></progress></strong></form><pre id="fjvdt"><tt id="fjvdt"><style id="fjvdt"><rp id="fjvdt"></rp></style></tt></pre><var id="fjvdt"></var><output id="fjvdt"><label id="fjvdt"><ruby id="fjvdt"><big id="fjvdt"></big></ruby></label></output><track id="fjvdt"></track><i id="fjvdt"></i><acronym id="fjvdt"><dfn id="fjvdt"><tt id="fjvdt"><var id="fjvdt"></var></tt></dfn></acronym><dfn id="fjvdt"></dfn><ins id="fjvdt"><dfn id="fjvdt"><tt id="fjvdt"><var id="fjvdt"></var></tt></dfn></ins><sub id="fjvdt"><ol id="fjvdt"></ol></sub><meter id="fjvdt"><p id="fjvdt"></p></meter><listing id="fjvdt"><output id="fjvdt"></output></listing><label id="fjvdt"><big id="fjvdt"></big></label><pre id="fjvdt"><dfn id="fjvdt"><big id="fjvdt"><rp id="fjvdt"></rp></big></dfn></pre><legend id="fjvdt"><u id="fjvdt"><thead id="fjvdt"><var id="fjvdt"></var></thead></u></legend><track id="fjvdt"><sub id="fjvdt"><nobr id="fjvdt"><font id="fjvdt"></font></nobr></sub></track><listing id="fjvdt"><form id="fjvdt"><label id="fjvdt"><dfn id="fjvdt"></dfn></label></form></listing><tt id="fjvdt"><var id="fjvdt"><b id="fjvdt"><form id="fjvdt"></form></b></var></tt><big id="fjvdt"><th id="fjvdt"></th></big><menuitem id="fjvdt"><ol id="fjvdt"><mark id="fjvdt"><thead id="fjvdt"></thead></mark></ol></menuitem><output id="fjvdt"><pre id="fjvdt"><ruby id="fjvdt"><span id="fjvdt"></span></ruby></pre></output><output id="fjvdt"><label id="fjvdt"><b id="fjvdt"><form id="fjvdt"></form></b></label></output><tt id="fjvdt"></tt><u id="fjvdt"><thead id="fjvdt"></thead></u><strong id="fjvdt"></strong><small id="fjvdt"><address id="fjvdt"><track id="fjvdt"><menuitem id="fjvdt"></menuitem></track></address></small><small id="fjvdt"><label id="fjvdt"></label></small><big id="fjvdt"><i id="fjvdt"><mark id="fjvdt"><thead id="fjvdt"></thead></mark></i></big><tt id="fjvdt"><big id="fjvdt"></big></tt><acronym id="fjvdt"><small id="fjvdt"></small></acronym><output id="fjvdt"></output><em id="fjvdt"><pre id="fjvdt"><tt id="fjvdt"><thead id="fjvdt"></thead></tt></pre></em><b id="fjvdt"><strong id="fjvdt"></strong></b><pre id="fjvdt"></pre><mark id="fjvdt"><dl id="fjvdt"><listing id="fjvdt"><legend id="fjvdt"></legend></listing></dl></mark><ins id="fjvdt"></ins><thead id="fjvdt"><pre id="fjvdt"></pre></thead><ins id="fjvdt"></ins><span id="fjvdt"><pre id="fjvdt"></pre></span><ins id="fjvdt"></ins><video id="fjvdt"></video><sub id="fjvdt"><ol id="fjvdt"></ol></sub><var id="fjvdt"><rp id="fjvdt"><i id="fjvdt"><video id="fjvdt"></video></i></rp></var><nobr id="fjvdt"><font id="fjvdt"><form id="fjvdt"><output id="fjvdt"></output></form></font></nobr><big id="fjvdt"></big><mark id="fjvdt"><thead id="fjvdt"><listing id="fjvdt"><legend id="fjvdt"></legend></listing></thead></mark><form id="fjvdt"><i id="fjvdt"></i></form><dl id="fjvdt"></dl><big id="fjvdt"><video id="fjvdt"><meter id="fjvdt"><track id="fjvdt"></track></meter></video></big><big id="fjvdt"></big><strong id="fjvdt"><video id="fjvdt"></video></strong><pre id="fjvdt"></pre><mark id="fjvdt"><label id="fjvdt"></label></mark><sub id="fjvdt"><form id="fjvdt"></form></sub><acronym id="fjvdt"></acronym><span id="fjvdt"><rp id="fjvdt"><address id="fjvdt"><legend id="fjvdt"></legend></address></rp></span><thead id="fjvdt"></thead><video id="fjvdt"><meter id="fjvdt"></meter></video><listing id="fjvdt"></listing><i id="fjvdt"></i></div> </html>