admin 管理员组

文章数量: 887021


2023年12月18日发(作者:pip install指定版本)

:表示html文件的起始和终止,标签在首行,标签在最后一行,两个要一起使用,网页中其他内容都要放在这两个标签之间。

:表示网页的头部标签,用来定义文件的头部信息,与标签一样,也是成对使用。

:表示出文件主体区,之间是网页的主题内容和其他用于控制文本显示方式的标签。

:网页标题,用于定义浏览器窗口标题栏上的文本信息,可以是网页的标题名或创作信息等网页说明信息。 </p><p style="text-indent: 2em;";><hr>:用于显示水平线,使页面看起来更整齐明了。 </p><p style="text-indent: 2em;";><pre>:将内容以原始格式显示。 </p><p style="text-indent: 2em;";><address>:标注联络人姓名、电话、地址等信息。 </p><p style="text-indent: 2em;";><blockquote>:区段引用标签。 </p><p style="text-indent: 2em;";><!—— ——>:注释标签,使用注释标签的目的是为网页代码中不同部分加上说明,方便日后的修改。注释的内容是不会在浏览器上显示出来的,如<——要注释的内容——>。 </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";><p>:文本段落,可以用align属性设置left、center、right 3种对齐方式。 </p><p style="text-indent: 2em;";><br/>:强制换行,没有结束标签,在网页中产生换行效果。 </p><p style="text-indent: 2em;";><center>:使文字或其他网页元素居中显示。 </p><p style="text-indent: 2em;";><marquee>:文本或图片移动显示,属性direction用来指示移动方向。 </p><p style="text-indent: 2em;";><dl>、<dt>、<dd>:<dl></dl>标签创建无序列表,<dt></dt>定义上层项目,<dd>、</dd>定义下层项目,<dt>、</dt>和<dd></dd>标签一定要放在<dl></dl>标签中才能使用。 </p><p style="text-indent: 2em;";><ul>、<ol>、<li>:<ol></ol>标签创建有序列表,<ul></ul>标签创建无序列表,<li>、</li>定义下层项目,<li>、</li>标签一定要放在<ol></ol>或<ul></ul>标签中才能使用。 </p><p style="text-indent: 2em;";><dir>:目录式列表。 </p><p style="text-indent: 2em;";><menu>:菜单式列表。 </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";><hi>:i=1,2,......,6,网页中文本标题,<h1></h1>显示最大的字号,<h6></h6>显示最小的字号。 </p><p style="text-indent: 2em;";><b>:粗字体。 </p><p style="text-indent: 2em;";><i>:斜字体。 </p><p style="text-indent: 2em;";><font>:改变字体设置,有face、size、color3个属性来控制,face设置字体,size设置字号,color设置颜色。 </p><p style="text-indent: 2em;";><big>:加大字号。 </p><p style="text-indent: 2em;";><small>:缩小字号。 </p><p style="text-indent: 2em;";><em>:斜体标签。 </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";><a>:建立超链接,有href、target、name等重要属性,其中href属性为<a>标签必须具备的属性。 </p><p style="text-indent: 2em;";> href属性。设置目标页面的链接地址,可以是绝对地址也可以是相对地址,如果为“#”表示空链接。 </p><p style="text-indent: 2em;";> target属性。设置超链接的打开方式,共5种:_blank指在新窗口中打开,_parent指</p><p style="text-indent: 2em;";>在上一级窗口中打开,_self指在同一窗口打开,_top指在浏览器的整个窗口中打开,new指在新窗口中打开。 </p><p style="text-indent: 2em;";> name属性。创建一个命名锚记,使用命名锚记后,会让链接直接跳转到一个页面的某一部分。 </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";><img>:图像标签,用于网页中插入图像。<img>标签拥有以下属性。 </p><p style="text-indent: 2em;";> src属性。该属性为<img>标签必须具备的属性,指存放图片的具体路径。 </p><p style="text-indent: 2em;";> width属性。图像的宽度。 </p><p style="text-indent: 2em;";> height属性。图像的高度。 </p><p style="text-indent: 2em;";> alt属性。图像的注释,也就是代替文字。 </p><p style="text-indent: 2em;";> align属性。图像的对齐属性,值baseline为基线对齐,值top为顶端对齐,值middle为居中,值bottom为底端对齐,值texttop为文本上方对齐,值absmiddle为绝对居中,值absbottom为绝对底端对齐,值left为左,值right为右。 </p><p style="text-indent: 2em;";> border属性。图像的边框的宽度,值大于或等于0,以像素(px)为单位。 </p><p style="text-indent: 2em;";> vspace属性。图像的垂直边距,图像与页面或文本之间的垂直边距。 </p><p style="text-indent: 2em;";> hspace属性。图像的水平边距。 </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";><table>:定义表格区域。 </p><p style="text-indent: 2em;";><caption>:定义表格标题。 </p><p style="text-indent: 2em;";><th>:定义表格头部。 </p><p style="text-indent: 2em;";><tr>:定义表格行。 </p><p style="text-indent: 2em;";><td>:定义单元格。 </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";><div>:区域标签(又称容器标签),用来作为多种HTML标签的组合的容器,对该区域块进行操作和设置,就可以完成对区域块中元素的操作和设置,Div能让网页代码具有很高的可扩展性。 </p><p style="text-indent: 2em;";><span>:文字图片等简短内容的容器,其意义有点类似Div,但是和Div不一样的是,span是文本级元素,默认不会占整行,可以在一行显示多个span。span常在段落、列表条目等项目中使用,该标签不能嵌套在其他的封闭级元素中。 </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";>p{text-indent:2em;}表示首行缩进两字符。 </p><p style="text-indent: 2em;";>line-height表示行间距,p{line-height:2em;}表示行间距(行高)为两字符。 </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";>letter-spacing表示字母与字母之间的间距,word-spacing表示英文单词之间的间距。 </p><p style="text-indent: 2em;";>text-align:center;表示居中对齐,text-align:left;表示居左对齐,text-align:right;表示居右对齐。 </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";>在CSS中,html中的标签元素大体被分为三种不同的类型:块状元素、内联元素(又叫行内元素)和内联块状元素。 </p><p style="text-indent: 2em;";>常用的块状元素有: </p><p style="text-indent: 2em;";><div>、<p>、<h1>...<h6>、<ol>、<ul>、<dl>、<table>、<address>、<blockquote> 、<form> </p><p style="text-indent: 2em;";>常用的内联元素有: </p><p style="text-indent: 2em;";><a>、<span>、</p><p style="text-indent: 2em;";>、<i>、<em>、<strong>、<label>、<q>、<var>、<cite>、<code> </p><p style="text-indent: 2em;";>常用的内联块状元素有: </p><p style="text-indent: 2em;";><img>、<input> </p><p style="text-indent: 2em;";>在html中<div>、 <p>、<h1>、<form>、<ul> 和 <li>就是块级元素。设置display:block就是将元素显示为块级元素。将内联元素a转换为块状元素表示为a{display:block;} </p><p style="text-indent: 2em;";>块级元素特点: </p><p style="text-indent: 2em;";>1、每个块级元素都从新的一行开始,并且其后的元素也另起一行。(真霸道,一个块级元素独占一行) </p><p style="text-indent: 2em;";>2、元素的高度、宽度、行高以及顶和底边距都可设置。 </p><p style="text-indent: 2em;";>3、元素宽度在不设置的情况下,是它本身父容器的100%(和父元素的宽度一致),除非设定一个宽度。 </p><p style="text-indent: 2em;";>在html中,<span>、<a>、<label>、 <strong> 和<em>就是典型的内联元素(行内元素)。块状元素也可以通过代码display:inline将元素设置为内联元素。如:div{ display:inline; } 块状元素div转换为内联元素,从而使 div 元素具有内联元素特点。 </p><p style="text-indent: 2em;";>内联元素特点: </p><p style="text-indent: 2em;";>1、和其他元素都在一行上; </p><p style="text-indent: 2em;";>2、元素的高度、宽度及顶部和底部边距不可设置; </p><p style="text-indent: 2em;";>3、元素的宽度就是它包含的文字或图片的宽度,不可改变。 </p><p style="text-indent: 2em;";>内联块状元素(inline-block)就是同时具备内联元素、块状元素的特点,代码display:inline-block就是将元素设置为内联块状元素。(css2.1新增),<img>、<input>标签就是这种内联块状标签。 </p><p style="text-indent: 2em;";>内联块状元素特点: </p><p style="text-indent: 2em;";>1、和其他元素都在一行上; </p><p style="text-indent: 2em;";>2、元素的高度、宽度、行高以及顶和底边距都可设置。 </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";>border-style(边框样式)常见样式有:dashed(虚线)| dotted(点线)| solid(实线)。 </p><p style="text-indent: 2em;";>border-color(边框颜色)中的颜色可设置为十六进制颜色,如:border-color:#888;//前面的井号不要忘掉。 </p><p style="text-indent: 2em;";>border-width(边框宽度)中的宽度也可以设置为:thin | medium | thick(但不是很常用),最常还是用象素(px)。 </p><p style="text-indent: 2em;";>只设置下(上、右、左)边框的设置: </p><p style="text-indent: 2em;";>div{border-bottom:1px solid red;} </p><p style="text-indent: 2em;";>border-top:1px solid red; </p><p style="text-indent: 2em;";> border-right:1px solid red; </p><p style="text-indent: 2em;";> border-left:1px solid red; </p><p style="text-indent: 2em;";>元素内容与边框之间是可以设置距离的,称之为“填充”。填充也可分为上、右、下、左(顺时针)。如下代码: </p><p style="text-indent: 2em;";>div{padding:20px 10px 15px 30px;} </p><p style="text-indent: 2em;";>如果上、右、下、左的填充都为10px;可以这么写 </p><p style="text-indent: 2em;";>div{padding:10px;} </p><p style="text-indent: 2em;";>如果上下填充一样为10px,左右一样为20px,可以这么写: </p><p style="text-indent: 2em;";>div{padding:10px 20px;} </p><p style="text-indent: 2em;";>元素与其它元素之间的距离可以使用边界(margin)来设置。边界也是可分为上、右、下、左。如下代码: </p><p style="text-indent: 2em;";>div{margin:20px 10px 15px 30px;} </p><p style="text-indent: 2em;";>如果上右下左的边界都为10px;可以这么写: </p><p style="text-indent: 2em;";>div{ margin:10px;} </p><p style="text-indent: 2em;";>如果上下边界一样为10px,左右一样为20px,可以这么写: </p><p style="text-indent: 2em;";>div{ margin:10px 20px;} </p><p style="text-indent: 2em;";>总结一下:padding和margin的区别,padding在边框里,margin在边框外。 </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";>流动模型 </p><p style="text-indent: 2em;";>第一点,块状元素都会在所处的包含元素内自上而下按顺序垂直延伸分布,因为在默认状态下,块状元素的宽度都为100%。实际上,块状元素都会以行的形式占据位置。 </p><p style="text-indent: 2em;";>第二点,在流动模型下,内联元素都会在所处的包含元素内从左到右水平分布显示。(内联元素可不像块状元素这么霸道独占一行) </p><p style="text-indent: 2em;";>浮动模型 </p><p style="text-indent: 2em;";>任何元素在默认情况下是不能浮动的,但可以用 CSS 定义为浮动,如 div、p、table、img </p><p style="text-indent: 2em;";>等元素都可以被定义为浮动。(在设置完边框数据后设置浮动模型) </p><p style="text-indent: 2em;";>并排显示左对齐:float:left; </p><p style="text-indent: 2em;";>一左一右显示:#div1{float:left;} </p><p style="text-indent: 2em;";>#div2{float:right;} </p><p style="text-indent: 2em;";>并排显示右对齐:float:right; </p><p style="text-indent: 2em;";>层模型 </p><p style="text-indent: 2em;";>层模型有三种形式:1、绝对定位(position: absolute)2、相对定位(position: relative)3、固定定位(position: fixed) </p><p style="text-indent: 2em;";>如果想为元素设置层模型中的绝对定位,需要设置position:absolute(表示绝对定位),这条语句的作用将元素从文档流中拖出来,然后使用left、right、top、bottom属性相对于其最接近的一个具有定位属性的父包含块进行绝对定位。如果不存在这样的包含块,则相对于body元素,即相对于浏览器窗口。 </p><p style="text-indent: 2em;";>如下面代码可以实现div元素相对于浏览器窗口向右移动100px,向下移动50px。 </p><p style="text-indent: 2em;";>div{ </p><p style="text-indent: 2em;";> width:200px; </p><p style="text-indent: 2em;";> height:200px; </p><p style="text-indent: 2em;";> border:2px red solid; </p><p style="text-indent: 2em;";> position:absolute; </p><p style="text-indent: 2em;";> left:100px; </p><p style="text-indent: 2em;";> top:50px; </p><p style="text-indent: 2em;";>} </p><p style="text-indent: 2em;";><div id="div1"></div> </p><p style="text-indent: 2em;";>(要向什么方向移动就输入多少距离就输入相反的方向和距离) </p><p style="text-indent: 2em;";>如果想为元素设置层模型中的相对定位,需要设置position:relative(表示相对定位),它通过left、right、top、bottom属性确定元素在正常文档流中的偏移位置。相对定位完成的过程是首先按static(float)方式生成一个元素(并且元素像层一样浮动了起来),然后相对于以前的位置移动,移动的方向和幅度由left、right、top、bottom属性确定,偏移前的位置保留不动。 </p><p style="text-indent: 2em;";>如下代码实现相对于以前位置向下移动50px,向右移动100px; </p><p style="text-indent: 2em;";>#div1{ </p><p style="text-indent: 2em;";> width:200px; </p><p style="text-indent: 2em;";> height:200px; </p><p style="text-indent: 2em;";> border:2px red solid; </p><p style="text-indent: 2em;";> position:relative; </p><p style="text-indent: 2em;";> left:100px; </p><p style="text-indent: 2em;";> top:50px; </p><p style="text-indent: 2em;";>} </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";><div id="div1"></div> </p><p style="text-indent: 2em;";>Position fixed:表示固定定位,与absolute定位类型类似,但它的相对移动的坐标是视图(屏幕内的网页窗口)本身。由于视图本身是固定的,它不会随浏览器窗口的滚动条滚动而变化,除非你在屏幕中移动浏览器窗口的屏幕位置,或改变浏览器窗口的显示大小,因此固定定位的元素会始终位于浏览器窗口内视图的某个位置,不会受文档流动影响,这与background-attachment:fixed;属性功能相同。(想将层模型固定在什么位置就在Position </p><p style="text-indent: 2em;";>fixed后加上位置,默认是固定在左上角) </p><p style="text-indent: 2em;";>运用position:relative可以相对于其他元素进行定位。 </p><p style="text-indent: 2em;";>1、参照定位的元素必须是相对定位元素的前辈元素 </p><p style="text-indent: 2em;";>2、参照定位的元素必须加入position:relative; </p><p style="text-indent: 2em;";>3、定位元素加入position:absolute,便可以使用top、bottom、left、right来进行偏移定位了。 </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";>行内元素怎么进行水平居中: </p><p style="text-indent: 2em;";>如果被设置元素为文本、图片等行内元素时,水平居中是通过给父元素设置 text-align:center 来实现的。(父元素和子元素:如下面的html代码中,div是“我想要在父容器中水平居中显示”这个文本的父元素。反之这个文本是div的子元素 ) </p><p style="text-indent: 2em;";>当被设置元素为 块状元素 时用 text-align:center 就不起作用了。 </p><p style="text-indent: 2em;";>定宽块状元素(定宽块状元素:块状元素的宽度width为固定值) </p><p style="text-indent: 2em;";><style> </p><p style="text-indent: 2em;";> div{ </p><p style="text-indent: 2em;";> border:1px solid red;/*为了显示居中效果明显为 div 设置了边框*/ </p><p style="text-indent: 2em;";> width:200px;/*定宽*/ </p><p style="text-indent: 2em;";>margin:20px auto;/* margin-left 与 margin-right 设置为 auto */ </p><p style="text-indent: 2em;";>} </p><p style="text-indent: 2em;";></style> </p><p style="text-indent: 2em;";>不定宽度的块状元素有三种方法居中(这三种方法目前使用的都很多): </p><p style="text-indent: 2em;";>加入 table 标签 </p><p style="text-indent: 2em;";>设置 display: inline 方法:与第一种类似,显示类型设为 行内元素,进行不定宽元素的属性设置 </p><p style="text-indent: 2em;";>设置 position:relative 和 left:50%:利用 相对定位 的方式,将元素向左偏移 50% ,即达到居中的目的 </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";>利用table标签的长度自适应性---即不定义其长度也不默认父元素body的长度(table其长度根据其内文本长度决定),因此可以看做一个定宽度块元素,然后再利用定宽度块状居中的margin的方法,使其水平居中。 </p><p style="text-indent: 2em;";>第一步:为需要设置的居中的元素外面加入一个 table 标签 ( 包括 <tbody>、<tr>、<td> )。 </p><p style="text-indent: 2em;";>第二步:为这个 table 设置“左右 margin 居中”(这个和定宽块状元素的方法一样)。 </p><p style="text-indent: 2em;";>如下:html代码: </p><p style="text-indent: 2em;";><div> </p><p style="text-indent: 2em;";> <table> </p><p style="text-indent: 2em;";> <tbody> </p><p style="text-indent: 2em;";> <tr><td> </p><p style="text-indent: 2em;";> <ul> </p><p style="text-indent: 2em;";> <li>我是第一行文本</li> </p><p style="text-indent: 2em;";> <li>我是第二行文本</li> </p><p style="text-indent: 2em;";> <li>我是第三行文本</li> </p><p style="text-indent: 2em;";> </ul> </p><p style="text-indent: 2em;";> </td></tr> </p><p style="text-indent: 2em;";> </tbody> </p><p style="text-indent: 2em;";> </table> </p><p style="text-indent: 2em;";></div> </p><p style="text-indent: 2em;";>css代码: </p><p style="text-indent: 2em;";><style>table{ border:1px solid; </p><p style="text-indent: 2em;";> margin:0 auto; </p><p style="text-indent: 2em;";>} </p><p style="text-indent: 2em;";></style> </p><p style="text-indent: 2em;";>第二种方法:改变块级元素的 display 为 inline 类型(设置为 行内元素 显示),然后使用 text-align:center 来实现居中效果。 </p><p style="text-indent: 2em;";>html代码: </p><p style="text-indent: 2em;";><body> </p><p style="text-indent: 2em;";><div class="container"> </p><p style="text-indent: 2em;";> <ul> </p><p style="text-indent: 2em;";> <li><a href="#">1</a></li> </p><p style="text-indent: 2em;";> <li><a href="#">2</a></li> </p><p style="text-indent: 2em;";> <li><a href="#">3</a></li> </p><p style="text-indent: 2em;";> </ul> </p><p style="text-indent: 2em;";></div> </p><p style="text-indent: 2em;";></body> </p><p style="text-indent: 2em;";>css代码: </p><p style="text-indent: 2em;";><style> </p><p style="text-indent: 2em;";>.container{ </p><p style="text-indent: 2em;";> text-align:center; </p><p style="text-indent: 2em;";>}/* margin:0;padding:0(消除文本与div边框之间的间隙)*/ </p><p style="text-indent: 2em;";>.container ul{ </p><p style="text-indent: 2em;";> list-style:none; </p><p style="text-indent: 2em;";> margin:0; </p><p style="text-indent: 2em;";> padding:0; </p><p style="text-indent: 2em;";> display:inline; </p><p style="text-indent: 2em;";>}/* margin-right:8px(设置li文本之间的间隔)*/ </p><p style="text-indent: 2em;";>.container li{ </p><p style="text-indent: 2em;";> margin-right:8px; </p><p style="text-indent: 2em;";> display:inline; </p><p style="text-indent: 2em;";>} </p><p style="text-indent: 2em;";></style> </p><p style="text-indent: 2em;";>方法三:通过给父元素设置 float,然后给父元素设置 position:relative 和 left:50%,子元素设置 position:relative 和 left: -50% 来实现水平居中。 </p><p style="text-indent: 2em;";><body> </p><p style="text-indent: 2em;";><div class="container"> </p><p style="text-indent: 2em;";> <ul> </p><p style="text-indent: 2em;";> <li><a href="#">1</a></li> </p><p style="text-indent: 2em;";> <li><a href="#">2</a></li> </p><p style="text-indent: 2em;";> <li><a href="#">3</a></li> </p><p style="text-indent: 2em;";> </ul> </p><p style="text-indent: 2em;";></div> </p><p style="text-indent: 2em;";></body> </p><p style="text-indent: 2em;";>css代码: </p><p style="text-indent: 2em;";><style> </p><p style="text-indent: 2em;";>.container{ </p><p style="text-indent: 2em;";> float:left; </p><p style="text-indent: 2em;";> position:relative; </p><p style="text-indent: 2em;";> left:50% </p><p style="text-indent: 2em;";>} </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";>.container ul{ </p><p style="text-indent: 2em;";> list-style:none; </p><p style="text-indent: 2em;";> margin:0; </p><p style="text-indent: 2em;";> padding:0; </p><p style="text-indent: 2em;";> </p><p style="text-indent: 2em;";> position:relative; </p><p style="text-indent: 2em;";> left:-50%; </p><p style="text-indent: 2em;";>} </p><p style="text-indent: 2em;";>.container li{float:left;display:inline;margin-right:8px;} </p><p style="text-indent: 2em;";></style> </p><p style="text-indent: 2em;";>设置垂直居中: </p><p style="text-indent: 2em;";>分两种情况:父元素高度确定的单行文本,以及父元素高度确定的多行文本。 </p><p style="text-indent: 2em;";>父元素高度确定的单行文本的竖直居中的方法是通过设置父元素的 height 和 </p><p style="text-indent: 2em;";>line-height 高度一致来实现的。(height: 该元素的高度,line-height: 顾名思义,行高(行间距),指在文本中,行与行之间的 基线间的距离 )。 </p><p style="text-indent: 2em;";>line-height 与 font-size 的计算值之差,在 CSS 中成为“行间距”。分为两半,分别加到一个文本行内容的顶部和底部。 </p><p style="text-indent: 2em;";>这种文字行高与块高一致带来了一个弊端:当文字内容的长度大于块的宽时,就有内容脱离了块。 </p><p style="text-indent: 2em;";>输入:.wrap{text-align:center;}表示垂直居中。 </p></div><br><p><h2></h2></p> <!-- 附件 --> <p class="tag"> 本文标签: <a style="margin-right: 10px" href="/tag/428094.html" target="_blank">元素</a> <a style="margin-right: 10px" href="/tag/428386.html" target="_blank">标签</a> <a style="margin-right: 10px" href="/tag/205.html" target="_blank">设置</a> <a style="margin-right: 10px" href="/tag/430115.html" target="_blank">块状</a> <a style="margin-right: 10px" href="/tag/232.html" target="_blank">属性</a> </p> <div class="roclinux-cn copyright"> <blockquote> <p> 版权声明:本文标题:html的基本标签含义 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:<a href="http://www.freenas.com.cn/jishu/1702828977h432429.html">http://www.freenas.com.cn/jishu/1702828977h432429.html</a>, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。 </p> </blockquote> </div> </div> <div class="roclinux-cn block-wrap single-relative"> <h2 class="block-title"> 更多相关文章 </h2> <div class="roclinux-cn post-list"> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/free/1713010687h627747.html" title="看如何在路由器上更改网络IP地址">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="看如何在路由器上更改网络IP地址">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/free" target="_blank">编程日记</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/free/1713010687h627747.html" class="post-item-title" title="看如何在路由器上更改网络IP地址"> <h3>看如何在路由器上更改网络IP地址</h3> <div class="roclinux-cn post-item-cover" style="display:inline-grid"> <ul class="post-categories"> <li> <a href="/free" target="_blank">编程日记</a> </li> </ul> </div> </a> <div class="roclinux-cn post-item-footer"> <div class="roclinux-cn tag-wrap"> </div> <div class="roclinux-cn post-item-meta">8月前</div> </div> <p class="post-item-summary">看如何在路由器上更改网络IP地址</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/free/1713011022h627765.html" title="如何在路由器上修改网络IP地址">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="如何在路由器上修改网络IP地址">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/free" target="_blank">编程日记</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/free/1713011022h627765.html" class="post-item-title" title="如何在路由器上修改网络IP地址"> <h3>如何在路由器上修改网络IP地址</h3> <div class="roclinux-cn post-item-cover" style="display:inline-grid"> <ul class="post-categories"> <li> <a href="/free" target="_blank">编程日记</a> </li> </ul> </div> </a> <div class="roclinux-cn post-item-footer"> <div class="roclinux-cn tag-wrap"> </div> <div class="roclinux-cn post-item-meta">8月前</div> </div> <p class="post-item-summary">如何在路由器上修改网络IP地址</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/free/1713021438h628450.html" title="LSI_阵列卡操作手册">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="LSI_阵列卡操作手册">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/free" target="_blank">编程日记</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/free/1713021438h628450.html" class="post-item-title" title="LSI_阵列卡操作手册"> <h3>LSI_阵列卡操作手册</h3> <div class="roclinux-cn post-item-cover" style="display:inline-grid"> <ul class="post-categories"> <li> <a href="/free" target="_blank">编程日记</a> </li> </ul> </div> </a> <div class="roclinux-cn post-item-footer"> <div class="roclinux-cn tag-wrap"> </div> <div class="roclinux-cn post-item-meta">8月前</div> </div> <p class="post-item-summary">LSI_阵列卡操作手册</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/jishu/1724056317h746908.html" title="xp系统打印机没有服务器属性设置,xp系统打印机纸张设置的方法">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="xp系统打印机没有服务器属性设置,xp系统打印机纸张设置的方法">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/jishu" target="_blank">技术总结</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/jishu/1724056317h746908.html" class="post-item-title" title="xp系统打印机没有服务器属性设置,xp系统打印机纸张设置的方法"> <h3>xp系统打印机没有服务器属性设置,xp系统打印机纸张设置的方法</h3> <div class="roclinux-cn post-item-cover" style="display:inline-grid"> <ul class="post-categories"> <li> <a href="/jishu" target="_blank">技术总结</a> </li> </ul> </div> </a> <div class="roclinux-cn post-item-footer"> <div class="roclinux-cn tag-wrap"> </div> <div class="roclinux-cn post-item-meta">4月前</div> </div> <p class="post-item-summary">[db:摘要]</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/jishu/1724529680h756993.html" title="win-pe 重置win10密码“SAM 文件只读属性,修改操作无法保存”的解决办法">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="win-pe 重置win10密码“SAM 文件只读属性,修改操作无法保存”的解决办法">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/jishu" target="_blank">技术总结</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/jishu/1724529680h756993.html" class="post-item-title" title="win-pe 重置win10密码“SAM 文件只读属性,修改操作无法保存”的解决办法"> <h3>win-pe 重置win10密码“SAM 文件只读属性,修改操作无法保存”的解决办法</h3> <div class="roclinux-cn post-item-cover" style="display:inline-grid"> <ul class="post-categories"> <li> <a href="/jishu" target="_blank">技术总结</a> </li> </ul> </div> </a> <div class="roclinux-cn post-item-footer"> <div class="roclinux-cn tag-wrap"> </div> <div class="roclinux-cn post-item-meta">4月前</div> </div> <p class="post-item-summary">[db:摘要]</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/jishu/1725086306h864580.html" title="【Win7标题栏标签设置成显示图案】">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="【Win7标题栏标签设置成显示图案】">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/jishu" target="_blank">技术总结</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/jishu/1725086306h864580.html" class="post-item-title" title="【Win7标题栏标签设置成显示图案】"> <h3>【Win7标题栏标签设置成显示图案】</h3> <div class="roclinux-cn post-item-cover" style="display:inline-grid"> <ul class="post-categories"> <li> <a href="/jishu" target="_blank">技术总结</a> </li> </ul> </div> </a> <div class="roclinux-cn post-item-footer"> <div class="roclinux-cn tag-wrap"> </div> <div class="roclinux-cn post-item-meta">3月前</div> </div> <p class="post-item-summary">[db:摘要]</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/jishu/1726395869h952272.html" title="电脑右键计算机属性在哪里打开,右键属性打不开怎么办">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="电脑右键计算机属性在哪里打开,右键属性打不开怎么办">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/jishu" target="_blank">技术总结</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/jishu/1726395869h952272.html" class="post-item-title" title="电脑右键计算机属性在哪里打开,右键属性打不开怎么办"> <h3>电脑右键计算机属性在哪里打开,右键属性打不开怎么办</h3> <div class="roclinux-cn post-item-cover" style="display:inline-grid"> <ul class="post-categories"> <li> <a href="/jishu" target="_blank">技术总结</a> </li> </ul> </div> </a> <div class="roclinux-cn post-item-footer"> <div class="roclinux-cn tag-wrap"> </div> <div class="roclinux-cn post-item-meta">3月前</div> </div> <p class="post-item-summary">[db:摘要]</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/jishu/1726435425h960122.html" title="JTabbedPaneswing标签页的使用实现页面切换">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="JTabbedPaneswing标签页的使用实现页面切换">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/jishu" target="_blank">技术总结</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/jishu/1726435425h960122.html" class="post-item-title" title="JTabbedPaneswing标签页的使用实现页面切换"> <h3>JTabbedPaneswing标签页的使用实现页面切换</h3> <div class="roclinux-cn post-item-cover" style="display:inline-grid"> <ul class="post-categories"> <li> <a href="/jishu" target="_blank">技术总结</a> </li> </ul> </div> </a> <div class="roclinux-cn post-item-footer"> <div class="roclinux-cn tag-wrap"> </div> <div class="roclinux-cn post-item-meta">3月前</div> </div> <p class="post-item-summary">[db:摘要]</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/jishu/1726746711h1022355.html" title="计算机属性安全选项卡,win10系统文件属性没有安全选项卡的图文办法">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="计算机属性安全选项卡,win10系统文件属性没有安全选项卡的图文办法">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/jishu" target="_blank">技术总结</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/jishu/1726746711h1022355.html" class="post-item-title" title="计算机属性安全选项卡,win10系统文件属性没有安全选项卡的图文办法"> <h3>计算机属性安全选项卡,win10系统文件属性没有安全选项卡的图文办法</h3> <div class="roclinux-cn post-item-cover" style="display:inline-grid"> <ul class="post-categories"> <li> <a href="/jishu" target="_blank">技术总结</a> </li> </ul> </div> </a> <div class="roclinux-cn post-item-footer"> <div class="roclinux-cn tag-wrap"> </div> <div class="roclinux-cn post-item-meta">3月前</div> </div> <p class="post-item-summary">win10系统使用久了&#xff0c;好多网友反馈说win10系统文件属性没有安全选项卡的问题&#xff0c;非常不方便。有什么办法可以永久解决win10系统文件属性没有安全选项卡的问题&#xff0c;面对win10</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/jishu/1726798305h1030512.html" title="电脑连不上网wifi,查看不了网络属性?解决办法,非常实用!亲测有效!">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="电脑连不上网wifi,查看不了网络属性?解决办法,非常实用!亲测有效!">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/jishu" target="_blank">技术总结</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/jishu/1726798305h1030512.html" class="post-item-title" title="电脑连不上网wifi,查看不了网络属性?解决办法,非常实用!亲测有效!"> <h3>电脑连不上网wifi,查看不了网络属性?解决办法,非常实用!亲测有效!</h3> <div class="roclinux-cn post-item-cover" style="display:inline-grid"> <ul class="post-categories"> <li> <a href="/jishu" target="_blank">技术总结</a> </li> </ul> </div> </a> <div class="roclinux-cn post-item-footer"> <div class="roclinux-cn tag-wrap"> </div> <div class="roclinux-cn post-item-meta">3月前</div> </div> <p class="post-item-summary">电脑连不上网? 首先检查你的驱动和网卡是否是好的,桌面----我的电脑------属性------设备管理器往下看 然后点右键就可以看得到驱动,以及网卡是否已启动!正常是要启动,驱动程序要最新! 如果这个没问题,那就打开电脑网络属性,</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/jishu/1726816627h1033598.html" title="4.netsh wlan 查看无线网卡的属性?如何查看电脑支持WIFI5还是WIFI6?如何查看曾经电脑连过的WIFI密码呢?">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="4.netsh wlan 查看无线网卡的属性?如何查看电脑支持WIFI5还是WIFI6?如何查看曾经电脑连过的WIFI密码呢?">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/jishu" target="_blank">技术总结</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/jishu/1726816627h1033598.html" class="post-item-title" title="4.netsh wlan 查看无线网卡的属性?如何查看电脑支持WIFI5还是WIFI6?如何查看曾经电脑连过的WIFI密码呢?"> <h3>4.netsh wlan 查看无线网卡的属性?如何查看电脑支持WIFI5还是WIFI6?如何查看曾经电脑连过的WIFI密码呢?</h3> <div class="roclinux-cn post-item-cover" style="display:inline-grid"> <ul class="post-categories"> <li> <a href="/jishu" target="_blank">技术总结</a> </li> </ul> </div> </a> <div class="roclinux-cn post-item-footer"> <div class="roclinux-cn tag-wrap"> </div> <div class="roclinux-cn post-item-meta">3月前</div> </div> <p class="post-item-summary">目录 (1)netsh命令简介和用途 (2)netsh(针对网络接口)命令 1sh wlan set tracing mode=yes(开启无线追踪日志) 2sh wlan show drivers 查看电脑无线网卡属性(重点)支持</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/jishu/1726828935h1035702.html" title="Windows7笔记本正版COA标签辨别">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="Windows7笔记本正版COA标签辨别">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/jishu" target="_blank">技术总结</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/jishu/1726828935h1035702.html" class="post-item-title" title="Windows7笔记本正版COA标签辨别"> <h3>Windows7笔记本正版COA标签辨别</h3> <div class="roclinux-cn post-item-cover" style="display:inline-grid"> <ul class="post-categories"> <li> <a href="/jishu" target="_blank">技术总结</a> </li> </ul> </div> </a> <div class="roclinux-cn post-item-footer"> <div class="roclinux-cn tag-wrap"> </div> <div class="roclinux-cn post-item-meta">3月前</div> </div> <p class="post-item-summary">大多数朋友购买的本本都是预先装好操作系统的&#xff0c;这是获取正版操作系统最经济的途径之一。 通常在机算机的背部都会贴有COA&#xff08;Certificate Of Authenticity&#xff09;</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/jishu/1727323893h1101801.html" title="使用a标签下载文件,浏览器会直接打开解决方案">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="使用a标签下载文件,浏览器会直接打开解决方案">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/jishu" target="_blank">技术总结</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/jishu/1727323893h1101801.html" class="post-item-title" title="使用a标签下载文件,浏览器会直接打开解决方案"> <h3>使用a标签下载文件,浏览器会直接打开解决方案</h3> <div class="roclinux-cn post-item-cover" style="display:inline-grid"> <ul class="post-categories"> <li> <a href="/jishu" target="_blank">技术总结</a> </li> </ul> </div> </a> <div class="roclinux-cn post-item-footer"> <div class="roclinux-cn tag-wrap"> </div> <div class="roclinux-cn post-item-meta">2月前</div> </div> <p class="post-item-summary">使用a标签下载文件&#xff0c;浏览器会直接打开解决方案 背景一、HTML中的a标签实现点击下载二、即使使用a标签的download属性&#xff0c;chrome浏览器还是会打开三、解决方案解决方案一&#xff1</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/jishu/1727324802h1101960.html" title="VUE浏览器打开新的标签页">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="VUE浏览器打开新的标签页">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/jishu" target="_blank">技术总结</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/jishu/1727324802h1101960.html" class="post-item-title" title="VUE浏览器打开新的标签页"> <h3>VUE浏览器打开新的标签页</h3> <div class="roclinux-cn post-item-cover" style="display:inline-grid"> <ul class="post-categories"> <li> <a href="/jishu" target="_blank">技术总结</a> </li> </ul> </div> </a> <div class="roclinux-cn post-item-footer"> <div class="roclinux-cn tag-wrap"> </div> <div class="roclinux-cn post-item-meta">2月前</div> </div> <p class="post-item-summary">let routesthis.$router.resolve({ name: "JumpOutSCM202", query: { productId: productId } });window.open(rout</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/jishu/1727325766h1102130.html" title="360浏览器总是新建标签页怎么关闭?">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="360浏览器总是新建标签页怎么关闭?">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/jishu" target="_blank">技术总结</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/jishu/1727325766h1102130.html" class="post-item-title" title="360浏览器总是新建标签页怎么关闭?"> <h3>360浏览器总是新建标签页怎么关闭?</h3> <div class="roclinux-cn post-item-cover" style="display:inline-grid"> <ul class="post-categories"> <li> <a href="/jishu" target="_blank">技术总结</a> </li> </ul> </div> </a> <div class="roclinux-cn post-item-footer"> <div class="roclinux-cn tag-wrap"> </div> <div class="roclinux-cn post-item-meta">2月前</div> </div> <p class="post-item-summary">360浏览器总是新建标签页怎么关闭&#xff1f;今天小编就给各位分享一下360浏览器去掉新标签页的方法&#xff0c;如果能碰巧解决你现在面临的问题&#xff0c;别忘了关注本站&#xff0c;下面一起来看</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/jishu/1727373629h1110375.html" title="实体类中的属性名和表中的字段名不一样,怎么办?">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="实体类中的属性名和表中的字段名不一样,怎么办?">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/jishu" target="_blank">技术总结</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/jishu/1727373629h1110375.html" class="post-item-title" title="实体类中的属性名和表中的字段名不一样,怎么办?"> <h3>实体类中的属性名和表中的字段名不一样,怎么办?</h3> <div class="roclinux-cn post-item-cover" style="display:inline-grid"> <ul class="post-categories"> <li> <a href="/jishu" target="_blank">技术总结</a> </li> </ul> </div> </a> <div class="roclinux-cn post-item-footer"> <div class="roclinux-cn tag-wrap"> </div> <div class="roclinux-cn post-item-meta">2月前</div> </div> <p class="post-item-summary">我们使用idea通过右上角Database可以将数据库中的数据直接导入&#xff0c;点击此处有教程。 通过上面快速导入的方法idea会把mgr_id&#xff0c;mgr_name该字段&#xff0c;转变为mg</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/jishu/1727388112h1112926.html" title="爬虫 Edge浏览器安装Xpaht Helper插件平替Chrome浏览器Xpaht Helper插件定位元素">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="爬虫 Edge浏览器安装Xpaht Helper插件平替Chrome浏览器Xpaht Helper插件定位元素">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/jishu" target="_blank">技术总结</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/jishu/1727388112h1112926.html" class="post-item-title" title="爬虫 Edge浏览器安装Xpaht Helper插件平替Chrome浏览器Xpaht Helper插件定位元素"> <h3>爬虫 Edge浏览器安装Xpaht Helper插件平替Chrome浏览器Xpaht Helper插件定位元素</h3> <div class="roclinux-cn post-item-cover" style="display:inline-grid"> <ul class="post-categories"> <li> <a href="/jishu" target="_blank">技术总结</a> </li> </ul> </div> </a> <div class="roclinux-cn post-item-footer"> <div class="roclinux-cn tag-wrap"> </div> <div class="roclinux-cn post-item-meta">2月前</div> </div> <p class="post-item-summary">爬虫 Edge浏览器安装Xpaht Helper插件平替Chrome浏览器Xpaht Helper插件定位元素 目录 爬虫 Edge浏览器安装Xpaht Helper插件平替Chrome浏览器Xpaht Helper插件定位元素1.概述2.</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/jishu/1728366332h1234309.html" title="chrome浏览器不支持video标签,不能自动播放。">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="chrome浏览器不支持video标签,不能自动播放。">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/jishu" target="_blank">技术总结</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/jishu/1728366332h1234309.html" class="post-item-title" title="chrome浏览器不支持video标签,不能自动播放。"> <h3>chrome浏览器不支持video标签,不能自动播放。</h3> <div class="roclinux-cn post-item-cover" style="display:inline-grid"> <ul class="post-categories"> <li> <a href="/jishu" target="_blank">技术总结</a> </li> </ul> </div> </a> <div class="roclinux-cn post-item-footer"> <div class="roclinux-cn tag-wrap"> </div> <div class="roclinux-cn post-item-meta">2月前</div> </div> <p class="post-item-summary">chrome浏览器不支持video标签&#xff0c;不能自动播放。 问题&#xff1a;chrome浏览器不支持video标签的autoplay属性&#xff0c;网页刷新后不能自动播放视频。 处理&#</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/jishu/1729174508h1327100.html" title="在线查看html浏览器兼容性,HTML5标签、属性、事件及浏览器兼容性速查表分享">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="在线查看html浏览器兼容性,HTML5标签、属性、事件及浏览器兼容性速查表分享">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/jishu" target="_blank">技术总结</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/jishu/1729174508h1327100.html" class="post-item-title" title="在线查看html浏览器兼容性,HTML5标签、属性、事件及浏览器兼容性速查表分享"> <h3>在线查看html浏览器兼容性,HTML5标签、属性、事件及浏览器兼容性速查表分享</h3> <div class="roclinux-cn post-item-cover" style="display:inline-grid"> <ul class="post-categories"> <li> <a href="/jishu" target="_blank">技术总结</a> </li> </ul> </div> </a> <div class="roclinux-cn post-item-footer"> <div class="roclinux-cn tag-wrap"> </div> <div class="roclinux-cn post-item-meta">2月前</div> </div> <p class="post-item-summary">5 可以说是近十年来 Web 标准最巨大的飞跃。和以前的版本不同&#xff0c; 5 并非仅仅用来表示 Web 内容&#xff0c;它的使命是将 Web 带入一个成熟的应用平台&#xff0c;在这个平台上&#</p> </div> <div class="roclinux-cn post-item"> <!--<div class="roclinux-cn post-item-cover">--> <!-- <a class="post-item-img" href="/jishu/1729932215h1371794.html" title="Android studio切换标签快捷键(Alt+左右键)">--> <!-- <img class="hover-scale" src="/view/img/nopic.png" alt="Android studio切换标签快捷键(Alt+左右键)">--> <!-- </a>--> <!-- <ul class="post-categories">--> <!-- <li><a href="/jishu" target="_blank">技术总结</a></li>--> <!-- </ul>--> <!--</div>--> <a href="/jishu/1729932215h1371794.html" class="post-item-title" title="Android studio切换标签快捷键(Alt+左右键)"> <h3>Android studio切换标签快捷键(Alt+左右键)</h3> <div class="roclinux-cn post-item-cover" style="display:inline-grid"> <ul class="post-categories"> <li> <a href="/jishu" target="_blank">技术总结</a> </li> </ul> </div> </a> <div class="roclinux-cn post-item-footer"> <div class="roclinux-cn tag-wrap"> </div> <div class="roclinux-cn post-item-meta">1月前</div> </div> <p class="post-item-summary">Android studio切换标签、内部切换页面快捷键&#xff08;Alt左右键&#xff09;&#xff1a; Alt左箭头&#xff08;←&#xff09;&#xff1a;选择上一个标</p> </div> </div> </div> <div class="roclinux-cn comments"> <div class="roclinux-cn postcomm block-wrap" id="divCommentPost"> <h2 class="block-title"> 发表评论 </h2> <form id="saypl" target="_self" method="post" name="saypl" action="/comment/create/432429.html?safe_token=OVIV0T2Tf_2BN4tt7IleVUQQi0O80aSWp3CW7I_2Bi75tGdY_2FYzA8TdQhpFMbZELfuRBhGbZJwb_2BDn5Cz5iLSvb7Jw_3D_3D"> <input type="hidden" name="doctype" value="1" /> <input type="hidden" name="quotepid" value="0" /> <div class="roclinux-cn comment-box comment-textarea"> <textarea name="message" id="txaArticle" class="text" cols="50" rows="4" tabindex="5" placeholder="评论内容"></textarea> </div> <input name="sumbit" type="submit" tabindex="6" value="发表评论" class="sub"> </form> </div> </div> <div class="sn-comments"> <div class="sn-comments__title">全部评论 0</div> <div class="sn-comments__body"> <div class="sn-empty">暂无评论</div> </div> </div> </div> </div> <div class="aside"> <div class="block-wrap" id="side-top-dxt"> <h2 class="block-title">推荐文章<i class="mcico mico-right"></i></h2> <div class="mcdas"> <a href="/jishu/1732355044h1534189.html" title="Cisco中ospf多区域虚链路配置" class="photo-item" target="_blank" style="background:#364cc6"> <!--<img src="/uploads/image/0234.jpg" alt="Cisco中ospf多区域虚链路配置" class="photo-item-img hover-scale" />--> <div class="photo-item-inner"> <h3 class="photo-item-title"> Cisco中ospf多区域虚链路配置 </h3> </div> </a> <a href="/jishu/1732360812h1535161.html" title="Rocket Typist pro for mac 「Macos文本快速输入工具」" class="photo-item" target="_blank" style="background:#364cc6"> <!--<img src="/uploads/image/0028.jpg" alt="Rocket Typist pro for mac 「Macos文本快速输入工具」" class="photo-item-img hover-scale" />--> <div class="photo-item-inner"> <h3 class="photo-item-title"> Rocket Typist pro for mac 「Macos文本快速输入工具」 </h3> </div> </a> <a href="/jishu/1732361677h1535392.html" title="猿人学第十五:wasm问题" class="photo-item" target="_blank" style="background:#364cc6"> <!--<img src="/uploads/image/0638.jpg" alt="猿人学第十五:wasm问题" class="photo-item-img hover-scale" />--> <div class="photo-item-inner"> <h3 class="photo-item-title"> 猿人学第十五:wasm问题 </h3> </div> </a> <a href="/jishu/1733430429h1590041.html" title="思科模拟器路由器配置实验" class="photo-item" target="_blank" style="background:#364cc6"> <!--<img src="/view/img/nopic.png" alt="思科模拟器路由器配置实验" class="photo-item-img hover-scale" />--> <div class="photo-item-inner"> <h3 class="photo-item-title"> 思科模拟器路由器配置实验 </h3> </div> </a> <a href="/jishu/1734804688h1670808.html" title="windows下绑定线程(进程)到指定的CPU核心 http:blog.csdn.netbeyond_cnarticledetails15813361" class="photo-item" target="_blank" style="background:#364cc6"> <!--<img src="/view/img/nopic.png" alt="windows下绑定线程(进程)到指定的CPU核心 http:blog.csdn.netbeyond_cnarticledetails15813361" class="photo-item-img hover-scale" />--> <div class="photo-item-inner"> <h3 class="photo-item-title"> windows下绑定线程(进程)到指定的CPU核心 http:blog.csdn.netbeyond_cnarticledetails15813361 </h3> </div> </a> </div> </div> <div class="block-wrap" id="side-hot-view-item"> <h2 class="block-title">热门文章<i class="mcico mico-right"></i> </h2> <ul> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/jishu/1731984762h1515563.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="最新配置电脑安装Win7、win server 2008R2等老系统的方法" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="最新配置电脑安装Win7、win server 2008R2等老系统的方法" target="_blank" href="/jishu/1731984762h1515563.html"> <h3>最新配置电脑安装Win7、win server 2008R2等老系统的方法</h3> </a> <span class="post-date">1月前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/jishu/1732353719h1533834.html" target="_blank">--> <!-- <img src="/uploads/image/0981.jpg" alt="数据分析辞职创业,可以做啥呢" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="数据分析辞职创业,可以做啥呢" target="_blank" href="/jishu/1732353719h1533834.html"> <h3>数据分析辞职创业,可以做啥呢</h3> </a> <span class="post-date">29天前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/jishu/1732355021h1534182.html" target="_blank">--> <!-- <img src="/uploads/image/0128.jpg" alt="@Scheduled(cron = ““)cron参数的用法,场景示例" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="@Scheduled(cron = ““)cron参数的用法,场景示例" target="_blank" href="/jishu/1732355021h1534182.html"> <h3>@Scheduled(cron = ““)cron参数的用法,场景示例</h3> </a> <span class="post-date">29天前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/jishu/1732355372h1534281.html" target="_blank">--> <!-- <img src="/uploads/image/0927.jpg" alt="取快递的数学问题:手机尾号的重复概率" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="取快递的数学问题:手机尾号的重复概率" target="_blank" href="/jishu/1732355372h1534281.html"> <h3>取快递的数学问题:手机尾号的重复概率</h3> </a> <span class="post-date">29天前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/jishu/1732357027h1534722.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="【人工智能开发框架】实验1、注册腾讯API,调用某个接口,完成一个人工智能应用" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="【人工智能开发框架】实验1、注册腾讯API,调用某个接口,完成一个人工智能应用" target="_blank" href="/jishu/1732357027h1534722.html"> <h3>【人工智能开发框架】实验1、注册腾讯API,调用某个接口,完成一个人工智能应用</h3> </a> <span class="post-date">29天前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/jishu/1732478983h1539536.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="windows系统和虚拟机上ubuntu系统通过虚拟串口进行通信" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="windows系统和虚拟机上ubuntu系统通过虚拟串口进行通信" target="_blank" href="/jishu/1732478983h1539536.html"> <h3>windows系统和虚拟机上ubuntu系统通过虚拟串口进行通信</h3> </a> <span class="post-date">28天前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/jishu/1732698696h1551444.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="华为笔记本c盘格式化+重新分盘" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="华为笔记本c盘格式化+重新分盘" target="_blank" href="/jishu/1732698696h1551444.html"> <h3>华为笔记本c盘格式化+重新分盘</h3> </a> <span class="post-date">25天前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/jishu/1733747433h1619849.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="windows下php环境搭建" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="windows下php环境搭建" target="_blank" href="/jishu/1733747433h1619849.html"> <h3>windows下php环境搭建</h3> </a> <span class="post-date">13天前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/jishu/1733970465h1649119.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="win7打开桌面计算机很慢,5个步骤解决Win7系统电脑软件打开速度慢问题" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="win7打开桌面计算机很慢,5个步骤解决Win7系统电脑软件打开速度慢问题" target="_blank" href="/jishu/1733970465h1649119.html"> <h3>win7打开桌面计算机很慢,5个步骤解决Win7系统电脑软件打开速度慢问题</h3> </a> <span class="post-date">10天前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/jishu/1734804204h1670746.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="在Windows上更新硬件驱动程序的唯一安全方法" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="在Windows上更新硬件驱动程序的唯一安全方法" target="_blank" href="/jishu/1734804204h1670746.html"> <h3>在Windows上更新硬件驱动程序的唯一安全方法</h3> </a> <span class="post-date">1天前</span> </div> </li> </ul> </div> <div class="block-wrap" id="side-new-view-item"> <h2 class="block-title">最新文章<i class="mcico mico-right"></i> </h2> <ul> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/free/1713021540h628456.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="Raid技术" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="Raid技术" target="_blank" href="/free/1713021540h628456.html"> <h3>Raid技术</h3> </a> <span class="post-date">8月前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/free/1713021438h628450.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="LSI_阵列卡操作手册" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="LSI_阵列卡操作手册" target="_blank" href="/free/1713021438h628450.html"> <h3>LSI_阵列卡操作手册</h3> </a> <span class="post-date">8月前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/free/1713019527h628324.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="破解Centos7_root用户密码" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="破解Centos7_root用户密码" target="_blank" href="/free/1713019527h628324.html"> <h3>破解Centos7_root用户密码</h3> </a> <span class="post-date">8月前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/free/1713019479h628321.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="Redhat重置Root用户密码方法" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="Redhat重置Root用户密码方法" target="_blank" href="/free/1713019479h628321.html"> <h3>Redhat重置Root用户密码方法</h3> </a> <span class="post-date">8月前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/free/1713019358h628310.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="远程批量修改linux服务器密码的脚本" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="远程批量修改linux服务器密码的脚本" target="_blank" href="/free/1713019358h628310.html"> <h3>远程批量修改linux服务器密码的脚本</h3> </a> <span class="post-date">8月前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/jishu/1734878078h1676750.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="Windows7 系统安全设置权限技巧" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="Windows7 系统安全设置权限技巧" target="_blank" href="/jishu/1734878078h1676750.html"> <h3>Windows7 系统安全设置权限技巧</h3> </a> <span class="post-date">5小时前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/jishu/1734878009h1676740.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="(Windows系统)详细介绍Windows系统 含有英文版" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="(Windows系统)详细介绍Windows系统 含有英文版" target="_blank" href="/jishu/1734878009h1676740.html"> <h3>(Windows系统)详细介绍Windows系统 含有英文版</h3> </a> <span class="post-date">5小时前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/jishu/1734876598h1676551.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="最新Windows 11教育版下载:专为教育设计的系统!" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="最新Windows 11教育版下载:专为教育设计的系统!" target="_blank" href="/jishu/1734876598h1676551.html"> <h3>最新Windows 11教育版下载:专为教育设计的系统!</h3> </a> <span class="post-date">5小时前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/jishu/1734875736h1676435.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="Win7系统下搭建NFS服务器" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="Win7系统下搭建NFS服务器" target="_blank" href="/jishu/1734875736h1676435.html"> <h3>Win7系统下搭建NFS服务器</h3> </a> <span class="post-date">6小时前</span> </div> </li> <li class="mclas"> <!--<div class="list-img">--> <!-- <a href="/jishu/1734874359h1676252.html" target="_blank">--> <!-- <img src="/view/img/nopic.png" alt="零基础使用UltraISO制作并安装纯净Win10系统指南" class="hover-scale" />--> <!-- </a>--> <!--</div>--> <div class="list-content"> <a title="零基础使用UltraISO制作并安装纯净Win10系统指南" target="_blank" href="/jishu/1734874359h1676252.html"> <h3>零基础使用UltraISO制作并安装纯净Win10系统指南</h3> </a> <span class="post-date">6小时前</span> </div> </li> </ul> </div> </div> </div> <div class="footer"> CopyRight © 2022 All Rights Reserved. <br class="footer-br" /> <a href="/" target="_blank">Powered By 技术交流 – FreeNAS中文网</a>| <a target="_blank" rel="nofollow" href="https://beian.miit.gov.cn/" style="font-size: 12px;">浙ICP备08016383号-4</a> 友情链接: <a href="https://www.freenas.com.cn/sitemap/1.txt" title="sitemaps">网站地图1</a> <a href="https://www.freenas.com.cn/sitemap/2.txt" title="sitemaps">网站地图2</a> <a href="https://www.freenas.com.cn/sitemap/3.txt" title="sitemaps">网站地图3</a> <a href="https://www.freenas.com.cn/sitemap/4.txt" title="sitemaps">网站地图4</a> <a href="https://www.freenas.com.cn/sitemap/5.txt" title="sitemaps">网站地图5</a> <a href="https://www.freenas.com.cn/sitemap/6.txt" title="sitemaps">网站地图6</a> <a href="https://www.freenas.com.cn/sitemap/7.txt" title="sitemaps">网站地图7</a> <a href="https://www.freenas.com.cn/sitemap/8.txt" title="sitemaps">网站地图8</a> <a href="https://www.freenas.com.cn/sitemap/9.txt" title="sitemaps">网站地图9</a> <a href="https://www.freenas.com.cn/sitemap/10.txt" title="sitemaps">网站地图10</a> <a href="https://www.freenas.com.cn/sitemap/11.txt" title="sitemaps">网站地图11</a> <a href="https://www.freenas.com.cn/sitemap/12.txt" title="sitemaps">网站地图12</a> <a href="https://www.freenas.com.cn/sitemap/13.txt" title="sitemaps">网站地图13</a> <a href="https://www.freenas.com.cn/sitemap/14.txt" title="sitemaps">网站地图14</a> <a href="https://www.freenas.com.cn/sitemap/15.txt" title="sitemaps">网站地图15</a> <a href="https://www.freenas.com.cn/sitemap/16.txt" title="sitemaps">网站地图16</a> <a href="https://www.freenas.com.cn/sitemap/17.txt" title="sitemaps">网站地图17</a> <a href="https://www.freenas.com.cn/sitemap/18.txt" title="sitemaps">网站地图18</a> <a href="https://www.freenas.com.cn/sitemap/19.txt" title="sitemaps">网站地图19</a> <a href="https://www.freenas.com.cn/sitemap/20.txt" title="sitemaps">网站地图20</a> <a href="https://www.freenas.com.cn/sitemap/21.txt" title="sitemaps">网站地图21</a> <a href="https://www.freenas.com.cn/sitemap/22.txt" title="sitemaps">网站地图22</a> <a href="https://www.freenas.com.cn/sitemap/23.txt" title="sitemaps">网站地图23</a> <a href="https://www.freenas.com.cn/sitemap/24.txt" title="sitemaps">网站地图24</a> <a href="https://www.freenas.com.cn/sitemap/25.txt" title="sitemaps">网站地图25</a> <a href="https://www.freenas.com.cn/sitemap/26.txt" title="sitemaps">网站地图26</a> <a href="https://www.freenas.com.cn/sitemap/27.txt" title="sitemaps">网站地图27</a> <a href="https://www.freenas.com.cn/sitemap/28.txt" title="sitemaps">网站地图28</a> <a href="https://www.freenas.com.cn/sitemap/29.txt" title="sitemaps">网站地图28</a> <a href="https://www.freenas.com.cn/sitemap/30.txt" title="sitemaps">网站地图30</a> <a href="https://www.freenas.com.cn/sitemap/31.txt" title="sitemaps">网站地图31</a> <a href="https://www.freenas.com.cn/sitemap/32.txt" title="sitemaps">网站地图32</a> <a href="https://www.freenas.com.cn/sitemap/33.txt" title="sitemaps">网站地图33</a> <a href="https://www.freenas.com.cn/sitemap/34.txt" title="sitemaps">网站地图34</a> <a href="https://www.freenas.com.cn/sitemap/35.txt" title="sitemaps">网站地图35</a> <a href="https://www.freenas.com.cn/sitemap/36.txt" title="sitemaps">网站地图36</a> <a href="https://www.freenas.com.cn/sitemap/37.txt" title="sitemaps">网站地图37</a> <a href="https://www.freenas.com.cn/sitemap/38.txt" title="sitemaps">网站地图38</a> <a href="https://www.freenas.com.cn/sitemap/39.txt" title="sitemaps">网站地图39</a> <a href="https://www.freenas.com.cn/sitemap/40.txt" title="sitemaps">网站地图40</a> <a href="https://www.freenas.com.cn/sitemap/41.txt" title="sitemaps">网站地图41</a> <a href="https://www.freenas.com.cn/sitemap/42.txt" title="sitemaps">网站地图42</a> <a href="https://www.freenas.com.cn/sitemap/43.txt" title="sitemaps">网站地图43</a> <a href="https://www.freenas.com.cn/sitemap/44.txt" title="sitemaps">网站地图44</a> <a href="https://www.freenas.com.cn/sitemap/45.txt" title="sitemaps">网站地图45</a> <a href="https://www.freenas.com.cn/sitemap/46.txt" title="sitemaps">网站地图46</a> </div> <script src="/view/js/xiuno.js?2.3.0"></script> <script src="/view/template/quzhiwa/js/custom.js?2.3.0"></script> <script> $('.cat-tab-wrap li[data-active="fid-4"]').addClass('current-menu-item'); $('.menu-header-container li[data-active="fid-4"]').addClass('current-menu-item'); </script> </body> </html>