微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

HTML中的Window和document的属性

<table class="text"><tr class="li1">
<td class="ln"><pre class="de1">1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130

0进步,i<0 后退   ------------------------------------------------- -------------------   window.screen对象  window.screen.width //屏幕宽度   window.screen.height //屏幕高度   window.screen.colorDepth //屏幕色深   window.screen.availWidth //可用宽度   window.screen.availHeight //可用高度(除去任务栏的高度)   -------------------------------------------------- -------------------   window.external对象   window.external.AddFavorite("地址","标题" ) //把网站新增到保藏夹   -------------------------------------------------- -------------------   window.navigator对象   window.navigator.appCodeName //浏览器代码名   window.navigator.appName //浏览器应用程序名   window.navigator.appMinorVersion //浏览器补丁版本   window.navigator.cpuClass //cpu类型 x86   window.navigator.platform //操作体系类型 win32   window.navigator.plugins   window.navigator.opsProfile   window.navigator.userProfile   window.navigator.systemLanguage //客户体系语言 zh-cn简体中文   window.navigator.userLanguage //用户语言,同上   window.navigator.appVersion //浏览器版本   window.navigator.userAgent   window.navigator.onLine //用户否在线   window.navigator.cookieEnabled //浏览器是否撑持cookie   window.navigator.mimeTypes document对象 -- 代表整个HTML 文档,可用来访问页面中的所有元素: 对象属性 document.title //设置文档标题等价于HTML的<a href="https://www.jb51.cc/tag/biaoqian/" target="_blank" class="keywords">标签</a> document.bgColor //设置<a href="https://www.jb51.cc/tag/yemian/" target="_blank" class="keywords">页面</a>背景色 document.fgColor //设置前景色(<a href="https://www.jb51.cc/tag/wenbenyanse/" target="_blank" class="keywords">文本颜色</a>) document.linkColor //未点击过的<a href="https://www.jb51.cc/tag/lianjie/" target="_blank" class="keywords">链接</a>颜色 document.alinkColor //激活<a href="https://www.jb51.cc/tag/lianjie/" target="_blank" class="keywords">链接</a>(焦点在此<a href="https://www.jb51.cc/tag/lianjie/" target="_blank" class="keywords">链接</a>上)的颜色 document.vlinkColor //已点击过的<a href="https://www.jb51.cc/tag/lianjie/" target="_blank" class="keywords">链接</a>颜色 <a href="https://www.jb51.cc/tag/documentURL/" target="_blank" class="keywords">document.URL</a> //设置URL<a href="https://www.jb51.cc/tag/shuxing/" target="_blank" class="keywords">属性</a>从而在同一窗口打开另一网页 document.fileCreatedDate //<a href="https://www.jb51.cc/tag/wenjian/" target="_blank" class="keywords">文件</a>建立日期,只读<a href="https://www.jb51.cc/tag/shuxing/" target="_blank" class="keywords">属性</a> document.fileModifiedDate //<a href="https://www.jb51.cc/tag/wenjian/" target="_blank" class="keywords">文件</a><a href="https://www.jb51.cc/tag/xiugai/" target="_blank" class="keywords">修改</a>日期,只读<a href="https://www.jb51.cc/tag/shuxing/" target="_blank" class="keywords">属性</a> document.fileSize //<a href="https://www.jb51.cc/tag/wenjian/" target="_blank" class="keywords">文件</a>大小,只读<a href="https://www.jb51.cc/tag/shuxing/" target="_blank" class="keywords">属性</a> document.cookie //设置和读出cookie document.charset //设置字符集 简体<a href="https://www.jb51.cc/tag/zhongwen/" target="_blank" class="keywords">中文</a>:gb2312 常用对象<a href="https://www.jb51.cc/tag/fangfa/" target="_blank" class="keywords">方法</a> document.write() //动态向<a href="https://www.jb51.cc/tag/yemian/" target="_blank" class="keywords">页面</a>写入<a href="https://www.jb51.cc/tag/neirong/" target="_blank" class="keywords">内容</a> document.createElement(Tag) //创建<a href="https://www.jb51.cc/tag/yige/" target="_blank" class="keywords">一个</a>html<a href="https://www.jb51.cc/tag/biaoqian/" target="_blank" class="keywords">标签</a>对象 document.getElementById(ID) //获得指定ID值的对象 document.getElementsByName(Name) //获得指定Name值的对象 document.body.appendChild(oTag) body-主体子对象 document.body //指定文档主体的开始和结束等价于<body></body> document.body.bgColor //设置或<a href="https://www.jb51.cc/tag/huoqu/" target="_blank" class="keywords">获取</a>对象后面的背景颜色 document.body.link //未点击过的<a href="https://www.jb51.cc/tag/lianjie/" target="_blank" class="keywords">链接</a>颜色 document.body.alink //激活<a href="https://www.jb51.cc/tag/lianjie/" target="_blank" class="keywords">链接</a>(焦点在此<a href="https://www.jb51.cc/tag/lianjie/" target="_blank" class="keywords">链接</a>上)的颜色 document.body.vlink //已点击过的<a href="https://www.jb51.cc/tag/lianjie/" target="_blank" class="keywords">链接</a>颜色 document.body.text //文本色 document.body.innerText //设置<body>...</body>之<a href="https://www.jb51.cc/tag/jiande/" target="_blank" class="keywords">间的</a>文本 document.body.innerHTML //设置<body>...</body>之<a href="https://www.jb51.cc/tag/jiande/" target="_blank" class="keywords">间的</a><a href="https://www.jb51.cc/tag/HTMLdaima/" target="_blank" class="keywords">HTML代码</a> document.body.topMargin //<a href="https://www.jb51.cc/tag/yemian/" target="_blank" class="keywords">页面</a>上边距 document.body.leftMargin //<a href="https://www.jb51.cc/tag/yemian/" target="_blank" class="keywords">页面</a>左边距 document.body.rightMargin //<a href="https://www.jb51.cc/tag/yemian/" target="_blank" class="keywords">页面</a>右边距 document.body.b<a href="https://www.jb51.cc/tag/ott/" target="_blank" class="keywords">ott</a>omMargin //<a href="https://www.jb51.cc/tag/yemian/" target="_blank" class="keywords">页面</a>下边距 document.body.background //背景<a href="https://www.jb51.cc/tag/tupian/" target="_blank" class="keywords">图片</a> document.body.appendChild(oTag) //动态<a href="https://www.jb51.cc/tag/shengcheng/" target="_blank" class="keywords">生成</a><a href="https://www.jb51.cc/tag/yige/" target="_blank" class="keywords">一个</a>HTML对象 常用对象事件 document.body.onclick="func()" //鼠标指针单击对象是触发 document.body.onmou<a href="https://www.jb51.cc/tag/SEO/" title="SEO">SEO</a>ver="func()" //鼠标指针移到对象时触发 document.body.onmou<a href="https://www.jb51.cc/tag/SEO/" title="SEO">SEO</a>ut="func()" //鼠标指针移出对象时触发 location-位置子对象 document.location.hash // #号后的部分 document.location.host // 域名+端口号 document.location.hostname // 域名 document.location.href // 完整URL document.location.pathname // 目录部分 document.location.port // 端口号 document.location.protocol // 网络协议(http:) document.location.search // ?号后的部分 常用对象事件 documeny.location.reload() //刷新网页 document.location.reload(URL) //打开新的网页 document.location.assign(URL) //打开新的网页 document.location.replace(URL) //打开新的网页   selection-选区子对象 document.selection   images集合(<a href="https://www.jb51.cc/tag/yemian/" target="_blank" class="keywords">页面</a>中的图象): ---------------------------- a)通过集合引用 document.images //对应<a href="https://www.jb51.cc/tag/yemian/" target="_blank" class="keywords">页面</a>上的<img><a href="https://www.jb51.cc/tag/biaoqian/" target="_blank" class="keywords">标签</a> document.images.length //对应<a href="https://www.jb51.cc/tag/yemian/" target="_blank" class="keywords">页面</a>上<img><a href="https://www.jb51.cc/tag/biaoqian/" target="_blank" class="keywords">标签</a>的个数 document.images[0] //第1个<img><a href="https://www.jb51.cc/tag/biaoqian/" target="_blank" class="keywords">标签</a> document.images[i] //第i-1个<img><a href="https://www.jb51.cc/tag/biaoqian/" target="_blank" class="keywords">标签</a> ---------------------------- b)通过nane<a href="https://www.jb51.cc/tag/shuxing/" target="_blank" class="keywords">属性</a>直接引用 <img name="oImage"> document.images.oImage //document.images.name<a href="https://www.jb51.cc/tag/shuxing/" target="_blank" class="keywords">属性</a> ---------------------------- c)引用<a href="https://www.jb51.cc/tag/tupian/" target="_blank" class="keywords">图片</a>的src<a href="https://www.jb51.cc/tag/shuxing/" target="_blank" class="keywords">属性</a> document.images.oImage.src //document.images.name<a href="https://www.jb51.cc/tag/shuxing/" target="_blank" class="keywords">属性</a>.src</pre></td> </tr></tbody></table><ins class="adsbygoogle" style="display:inline-block;width:780px;height:90px" data-ad-client="ca-pub-4605373693034661" data-ad-slot="4286417769"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script><p class="small text-muted">版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。</p> </div><div class="topcard-tags"><a href="https://www.jb51.cc/tag/HTMLzhongdeWindowhedocumentdeshuxing/" class="tag_link" target="_blank">HTML中的Window和document的属性</a></div><ul class="list-group"> <li class="list-group-item"><a href="https://www.jb51.cc/wenti/421950.html" title="俄罗斯方块">上一篇:俄罗斯方块</a><a href="https://www.jb51.cc/wenti/421948.html" title="mac air yii2 tests codecept" class="text-muted pull-right">下一篇:mac air yii2 tests codecept</a> </li> </ul> </div> </div> </div> <div class="row row-sm"> <div class="col-sm-12 col-md-12 col-lg-12"> <div class="card"> <h4>相关推荐</h4> <hr /> <div class="list_con"> <a href="https://www.jb51.cc/wenti/4741780.html" title="显卡天梯图2024最新版 显卡性能天梯图2024最新排行榜"><img class="lazy" src="https://www.jb51.cc/images/np.jpg" data-original="https://www.jb51.cc/res/2024/09-24/22/74aab625c95c197d6100e9f086e82876.jpg" title="" width="160" height="90" style="float:right;margin-left:30px;" /><div class="title">显卡天梯图2024最新版 显卡性能天梯图2024最新排行榜</div> <div class="summary">显卡天梯图2024最新版,显卡是电脑进行图形处理的重要设备,显卡的性能高低决定了电脑的性能高低。显卡天梯图用数据直观地为我们展示了具体性能数据,让我们可以根据这些参数进行显卡性能的选择,让我们可以获得符合自己使用需求的显卡</div> <time class="summary">作者:编程之家 时间:2024-09-24</time> </a> </div><div class="list_con"> <a href="https://www.jb51.cc/wenti/4741779.html" title="初始化电脑时出现问题怎么办 初始化电脑时出现问题解决方法"><img class="lazy" src="https://www.jb51.cc/images/np.jpg" data-original="https://www.jb51.cc/res/2024/09-24/22/723f715a9273ff76880ee84418ea6939.png" title="" width="160" height="90" style="float:right;margin-left:30px;" /><div class="title">初始化电脑时出现问题怎么办 初始化电脑时出现问题解决方法</div> <div class="summary">初始化电脑时出现问题怎么办,可以使用win系统的安装介质,连接电脑后重启,选择从介质中引导,然后点击修复计算机-疑难解答-高级选项-自动修复,等待一段时间就可以了。有些小伙伴在初始化电脑是碰到了问题,下面小编给大家带来了初始化电脑时出现问题解决方法。</div> <time class="summary">作者:编程之家 时间:2024-09-24</time> </a> </div><div class="list_con"> <a href="https://www.jb51.cc/wenti/4741778.html" title="todesk远程开机怎么设置 todesk远程开机教程"><img class="lazy" src="https://www.jb51.cc/images/np.jpg" data-original="https://www.jb51.cc/res/2024/09-24/22/319e56b3bb3e4a566ad07dfe12efeace.png" title="" width="160" height="90" style="float:right;margin-left:30px;" /><div class="title">todesk远程开机怎么设置 todesk远程开机教程</div> <div class="summary">todesk远程开机怎么设置,两台电脑要在同一局域网内,然后需要修改BIOS,还要修改电源选项。我们在使用todesk软件时,有些小伙伴想要进行远程开机,那应该怎么设置呢,下面小编就给大家带来了todesk远程开机教程,一起来看看吧。</div> <time class="summary">作者:编程之家 时间:2024-09-24</time> </a> </div><div class="list_con"> <a href="https://www.jb51.cc/wenti/4741777.html" title="油猴谷歌插件怎么安装 油猴谷歌插件安装教程"><img class="lazy" src="https://www.jb51.cc/images/np.jpg" data-original="https://www.jb51.cc/res/2024/09-24/22/fd49dd67e48209c7f7896446bd0faeee.png" title="" width="160" height="90" style="float:right;margin-left:30px;" /><div class="title">油猴谷歌插件怎么安装 油猴谷歌插件安装教程</div> <div class="summary">油猴谷歌插件怎么安装,可以通过谷歌应用商店进行安装,需要才能打开应用商店,或者是下载插件到本地,解压后把Tampermonkey.crx文件拖到谷歌浏览器的程序扩展页面进行安装。小伙伴想知道谷歌浏览器怎么安装油猴,下面小编给大家带来了油猴谷歌插件安装教程。</div> <time class="summary">作者:编程之家 时间:2024-09-24</time> </a> </div><div class="list_con"> <a href="https://www.jb51.cc/wenti/4741776.html" title="16g虚拟内存设置多少合适 16g虚拟内存最佳设置方法"><img class="lazy" src="https://www.jb51.cc/images/np.jpg" data-original="https://www.jb51.cc/res/2022/11-09/12/8752598b419f0f71822fe154a33144be.png" title="" width="160" height="90" style="float:right;margin-left:30px;" /><div class="title">16g虚拟内存设置多少合适 16g虚拟内存最佳设置方法</div> <div class="summary">虚拟内存这个名词想必很多人都听说过,我们在使用电脑的时候,特别是玩大型游戏时候,如果内存空间不足则会开启使用虚拟内存,这样就能够防止死机的情况。有不少的新用户在安装系统的时候,不知道16G的内存设置多大的虚拟内存,下面小编就详细给大家讲解下多少才</div> <time class="summary">作者:编程之家 时间:2024-09-24</time> </a> </div><div class="list_con"> <a href="https://www.jb51.cc/wenti/4741775.html" title="win11本地账户怎么改名 win11本地账户改名图文介绍"><img class="lazy" src="https://www.jb51.cc/images/np.jpg" data-original="https://www.jb51.cc/res/2024/09-24/22/1b485ee44a1195a7c85a57be77b6d107.jpg" title="" width="160" height="90" style="float:right;margin-left:30px;" /><div class="title">win11本地账户怎么改名 win11本地账户改名图文介绍</div> <div class="summary">win11本地账户怎么改名?win11很多操作都变了样,用户如果想要修改用户名称可能找不到具体的位置在哪。win11系统本地账户的名称都是默认的,很多用户为了有特征性想要更改一些有趣的名称,这样看起来更有个性点。win11本地账户怎么改名,我们可以通过打开控制面板,然后</div> <time class="summary">作者:编程之家 时间:2024-09-24</time> </a> </div><div class="list_con"> <a href="https://www.jb51.cc/wenti/4741774.html" title="网速怎么看快慢k/s,b/s是什么意思 网速怎么看快慢k/s,b/s哪个快"><img class="lazy" src="https://www.jb51.cc/images/np.jpg" data-original="https://www.jb51.cc/res/2024/09-24/22/586ae8c1c02af83e8b0a8025602ae26a.jpg" title="" width="160" height="90" style="float:right;margin-left:30px;" /><div class="title">网速怎么看快慢k/s,b/s是什么意思 网速怎么看快慢k/s,b/s哪个快</div> <div class="summary">网速怎么看快慢k s,b s是什么意思,k b就是网速1kb每秒,b s就是网速1b每秒,1kb=1024b。很多小伙伴在下载或上传文件时都会看着kb s,b s等等单位,这些单位是什么意思呢,哪个比较快呢,下面小编给大家带来了网速怎么看快慢k s,b s哪个快的相关资讯。</div> <time class="summary">作者:编程之家 时间:2024-09-24</time> </a> </div><div class="list_con"> <a href="https://www.jb51.cc/wenti/4741773.html" title="笔记本声卡驱动怎么更新 笔记本声卡驱动更新方法"><img class="lazy" src="https://www.jb51.cc/images/np.jpg" data-original="https://www.jb51.cc/res/2024/09-24/22/4c726dd8935bb329541f9a9e6773eef1.png" title="" width="160" height="90" style="float:right;margin-left:30px;" /><div class="title">笔记本声卡驱动怎么更新 笔记本声卡驱动更新方法</div> <div class="summary">我们在使用电脑的时候,经常需要对各种驱动进行更新,如果长期不更新会导致无法正常的使用。有不少的用户在问,该怎么更新声卡驱动?其实很简单,我们右键“我的电脑”打开“设备管理器”,找到“声音”选项并右键“realtek audio”更新驱动程序即可,具体如下。</div> <time class="summary">作者:编程之家 时间:2024-09-24</time> </a> </div><div class="list_con"> <a href="https://www.jb51.cc/wenti/4741772.html" title="应用程序无法正常启动0x0000142怎么办 0x0000142错误代码解决办法"><img class="lazy" src="https://www.jb51.cc/images/np.jpg" data-original="https://www.jb51.cc/res/2024/09-24/22/145b81682bf59fbe450a0bc50b9f3034.png" title="" width="160" height="90" style="float:right;margin-left:30px;" /><div class="title">应用程序无法正常启动0x0000142怎么办 0x0000142错误代码解决办法</div> <div class="summary">应用程序无法正常启动0x0000142怎么办?我们的电脑在日经月累的使用下,难免会出现各种问题,最近有小伙伴反应自己的电脑出现应用程序无法正常启动0x0000142的错误代码,这要怎么解决呢?下面小编就告诉大家电脑遇到0x0000142错误代码的解决办法。</div> <time class="summary">作者:编程之家 时间:2024-09-24</time> </a> </div><div class="list_con"> <a href="https://www.jb51.cc/wenti/4741771.html" title="wegame怎么不让别人看战绩 wegame隐藏战绩的方法"><img class="lazy" src="https://www.jb51.cc/images/np.jpg" data-original="https://www.jb51.cc/res/2024/09-24/22/0a638ff6398f2bedf6503b720e4829a5.jpg" title="" width="160" height="90" style="float:right;margin-left:30px;" /><div class="title">wegame怎么不让别人看战绩 wegame隐藏战绩的方法</div> <div class="summary">Wegame是国内腾讯旗下的一款游戏平台,有很多玩家都在这个平台上玩游戏,例如经典的英雄联盟。有不少的玩家不想让好友看到自己的游戏战绩,但是又不知道怎么隐藏。其实很简单,我们可以在个人设置中,将“我的应用”设置为“只对自己可见” 即可。</div> <time class="summary">作者:编程之家 时间:2024-09-24</time> </a> </div></div> </div> </div> </div> <div class="col-sm-12 col-md-12 col-lg-3"> <!-- row --> <div class="row row-sm"> <div class="col-sm-12 col-md-12 col-lg-12"> <div class="card"> <!-- jb51-article-300x600 --> <ins class="adsbygoogle" style="display:inline-block;width:300px;height:600px" data-ad-client="ca-pub-4605373693034661" data-ad-slot="7541177540"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> </div> </div> </div> <!-- row end --> <!-- row --> <div class="row row-sm"> <div class="col-sm-12 col-md-12 col-lg-12"> <div class="card" style="padding:20px;"> <label class="main-content-label ">小编推荐</label><div class="entry-img"><img src="https://www.jb51.cc/res/2023/06-29/12/fa513c17761076a6649593e2bd17f268.jpg" height="150" width="100%"><div class="entry-wrap"><a href="https://www.jb51.cc/mp/4606010.html" title="苹果市值2025年有望达4万亿美元" >苹果市值2025年有望达4万亿美元</a> </div></div><ul class="n-list"><li><a href="https://www.jb51.cc/mp/4742234.html" title="微信青少年模式全新升级:视频号内容分级与家长控制功能上线!" >• 微信青少年模式全新升级:视频号内容分</a></li><li><a href="https://www.jb51.cc/mp/4742229.html" title="《地下城与勇士DNF》永久交通卡卡面上线华为钱包!" >• 《地下城与勇士DNF》永久交通卡卡面上线</a></li><li><a href="https://www.jb51.cc/mp/4742227.html" title="优酷为方便长辈看视频,上线银发剧场!" >• 优酷为方便长辈看视频,上线银发剧场!</a></li><li><a href="https://www.jb51.cc/mp/4742224.html" title="微信读书集成腾讯混元AI技术,可以一日阅读千页?" >• 微信读书集成腾讯混元AI技术,可以一日</a></li><li><a href="https://www.jb51.cc/mp/4742221.html" title="京东快递上线11项会员权益" >• 京东快递上线11项会员权益</a></li><li><a href="https://www.jb51.cc/mp/4742219.html" title="高德地图功能升级,新增安全预警" >• 高德地图功能升级,新增安全预警</a></li><li><a href="https://www.jb51.cc/mp/4742214.html" title="小爱同学多模态能力升级,引领智能生活新潮流" >• 小爱同学多模态能力升级,引领智能生活</a></li></ul> </div> </div> </div> <!-- row end --> <div class="row row-sm"> <div class="col-sm-12 col-md-12 col-lg-12"> <div class="card"> <label class="main-content-label ">热门标签<a href="https://www.jb51.cc/all" class="pull-right">更多</a> </label> <div class="topcard-tags"><a href="https://www.jb51.cc/tag/python/" title="python">python</a><a href="https://www.jb51.cc/tag/JavaScript/" title="JavaScript">JavaScript</a><a href="https://www.jb51.cc/tag/java/" title="java">java</a><a href="https://www.jb51.cc/tag/HTML/" title="HTML">HTML</a><a href="https://www.jb51.cc/tag/PHP/" title="PHP">PHP</a><a href="https://www.jb51.cc/tag/reactjs/" title="reactjs">reactjs</a><a href="https://www.jb51.cc/tag/C/" title="C#">C#</a><a href="https://www.jb51.cc/tag/Android/" title="Android">Android</a><a href="https://www.jb51.cc/tag/CSS/" title="CSS">CSS</a><a href="https://www.jb51.cc/tag/Nodejs/" title="Node.js">Node.js</a><a href="https://www.jb51.cc/tag/sql/" title="sql">sql</a><a href="https://www.jb51.cc/tag/rp/" title="r">r</a><a href="https://www.jb51.cc/tag/python3x/" title="python-3.x">python-3.x</a><a href="https://www.jb51.cc/tag/MysqL/" title="MysqL">MysqL</a><a href="https://www.jb51.cc/tag/jQuery/" title="jQuery">jQuery</a><a href="https://www.jb51.cc/tag/c4343/" title="c++">c++</a><a href="https://www.jb51.cc/tag/pandas/" title="pandas">pandas</a><a href="https://www.jb51.cc/tag/flutter/" title="Flutter">Flutter</a><a href="https://www.jb51.cc/tag/angular/" title="angular">angular</a><a href="https://www.jb51.cc/tag/IOS/" title="IOS">IOS</a><a href="https://www.jb51.cc/tag/django/" title="django">django</a><a href="https://www.jb51.cc/tag/linux/" title="linux">linux</a><a href="https://www.jb51.cc/tag/swift/" title="swift">swift</a><a href="https://www.jb51.cc/tag/typescript/" title="typescript">typescript</a><a href="https://www.jb51.cc/tag/luyouqi/" title="路由器">路由器</a><a href="https://www.jb51.cc/tag/JSON/" title="JSON">JSON</a><a href="https://www.jb51.cc/tag/luyouqishezhi/" title="路由器设置">路由器设置</a><a href="https://www.jb51.cc/tag/wuxianluyouqi/" title="无线路由器">无线路由器</a><a href="https://www.jb51.cc/tag/h3c/" title="h3c">h3c</a><a href="https://www.jb51.cc/tag/huasan/" title="华三">华三</a><a href="https://www.jb51.cc/tag/huasanluyouqishezhi/" title="华三路由器设置">华三路由器设置</a><a href="https://www.jb51.cc/tag/huasanluyouqi/" title="华三路由器">华三路由器</a><a href="https://www.jb51.cc/tag/diannaoruanjianjiaocheng/" title="电脑软件教程">电脑软件教程</a><a href="https://www.jb51.cc/tag/arrays/" title="arrays">arrays</a><a href="https://www.jb51.cc/tag/docker/" title="docker">docker</a><a href="https://www.jb51.cc/tag/ruanjiantuwenjiaocheng/" title="软件图文教程">软件图文教程</a><a href="https://www.jb51.cc/tag/C/" title="C">C</a><a href="https://www.jb51.cc/tag/vuejs/" title="vue.js">vue.js</a><a href="https://www.jb51.cc/tag/laravel/" title="laravel">laravel</a><a href="https://www.jb51.cc/tag/springboot/" title="spring-boot">spring-boot</a></div> </div> </div> </div> </div> </div> </div> <footer id="footer"> <div class="container" style="width:1440px;"> <div class="row hidden-xs"> <div class="col-sm-12 col-md-9 col-lg-9 site-link"> <ul class="list-inline"> <li>友情链接:</li><li><a href="https://ai.jb51.cc/" title="ai导航是编程之家旗下ai方向的ai资讯、ai工具类集合导航站。" target="_blank" rel="nofollow">ai导航</a></li></ul> <ul class="list-inline"> <li><a href="https://www.jb51.cc" title="编程之家">编程之家</a></li>-<li><a href="https://t5m44pq3f7.jiandaoyun.com/f/638ca61b7b079a000a5d2dd6" rel="nofollow" title="我要投稿" target="_blank">我要投稿</a></li>-<li><a target="_blank" rel="nofollow" href="https://t5m44pq3f7.jiandaoyun.com/f/638ca8c69ad234000a79561f" title="广告合作">广告合作</a></li>-<li><a target="_blank" href="http://wpa.qq.com/msgrd?v=3&uin=76874919&site=qq&menu=yes">联系我们</a></li>-<li><a href="https://www.jb51.cc/disclaimers.html" title="免责声明">免责声明</a></li>-<li><a href="https://www.jb51.cc/sitemap/all/index.xml" title="网站地图" target="_blank">网站地图</a></li> </ul> <div>版权所有 © 2018编程之家<a href="https://beian.miit.gov.cn/" target="_blank" rel="nofollow">闽ICP备13020303号-8</a> </div> </div> <div class="col-sm-12 col-md-3 col-lg-3"><img src="https://www.jb51.cc/qrcode.jpg" width="90" alt="微信公众号搜索 “ 程序精选 ” ,选择关注!"> <div class="pull-right">微信公众号搜<span class="text-danger">"智元新知"</span>关注<br />微信扫一扫可直接关注哦!</div> </div> </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> <script src="https://www.jb51.cc/js/count.js"></script> </body> </html>