个人学习随笔,不喜勿喷。(习自哔哩哔哩--尚硅谷) 以下内容均从HBuilder X直接粘贴过来,直接粘贴到相关编辑器可直接执行,以供学习。 <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <script ty ...
分类:
其他好文 时间:
2021-07-12 17:40:53
阅读次数:
0
个人学习随笔,不喜勿喷。(习自哔哩哔哩--尚硅谷) 以下内容均从HBuilder X直接粘贴过来,直接粘贴到相关编辑器可直接执行,以供学习。 <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <script ty ...
分类:
其他好文 时间:
2021-07-12 17:40:35
阅读次数:
0
1 基本统计分析 1.1 描述性统计分析 myvar<-c("mpg","hp","wt") head(mtcars[myvar]) #显示数据框的头部信息 dat<-mtcars[myvar] #查看数据框 1.1.1 方法 (1)简单分析:summary() 结果分析:计算了最值、分位数、均值等 ...
分类:
编程语言 时间:
2021-07-06 16:23:03
阅读次数:
0
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <style type="text/css"> .box1{ width: 100px; height: 100px; background-color:red ...
分类:
其他好文 时间:
2021-07-05 18:59:08
阅读次数:
0
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <style type="text/css"> /* 清除浏览器默认样式 */ *{ margin: 0; padding: 0; } .box1{ width: ...
分类:
其他好文 时间:
2021-07-05 18:58:02
阅读次数:
0
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>鼠标悬浮切换显示</title> <!-- js方法 --> <script type ...
分类:
其他好文 时间:
2021-07-05 18:57:11
阅读次数:
0
1.获取元素 1.1根据ID获取 语法:document.getElementById(id)作用:根据ID获取元素对象参数:id值,区分大小写的字符串返回值:元素对象 或 null 案例代码 <body> <div id="time">2019-9-9</div> <script> // 因为我们 ...
元素显隐js代码: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <link rel="stylesheet" href="https://cdn.staticfile.org/font-awesome/4. ...
分类:
Web程序 时间:
2021-07-05 18:33:26
阅读次数:
0
<!DOCTYPE html> <html> <head> <title>多个div高度保持一致</title> <style type="text/css"> #parent { color: #fff; width: 1140px; margin: 0px auto; border: 1px s ...
分类:
其他好文 时间:
2021-07-05 18:18:41
阅读次数:
0
框架集和内联框架的作用类似,都是用于在一个页面中引入其他的外部的页面, 框架集可以同时引入多个页面,而内联框架只能引入一个, 在h5标准中,推荐使用框架集,而不使用内联框架 使用frameset来创建一个框架集,注意frameset不能和body出现在同一个页面中 所以要使用框架集,页面中就不可以使 ...
分类:
其他好文 时间:
2021-07-05 18:18:19
阅读次数:
0