个人学习随笔,不喜勿喷。(习自哔哩哔哩--尚硅谷) 以下内容均从HBuilder X直接粘贴过来,直接粘贴到相关编辑器可直接执行,以供学习。 <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <script ty ...
分类:
其他好文 时间:
2021-07-12 17:40:35
阅读次数:
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
元素显隐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
框架集和内联框架的作用类似,都是用于在一个页面中引入其他的外部的页面, 框架集可以同时引入多个页面,而内联框架只能引入一个, 在h5标准中,推荐使用框架集,而不使用内联框架 使用frameset来创建一个框架集,注意frameset不能和body出现在同一个页面中 所以要使用框架集,页面中就不可以使 ...
分类:
其他好文 时间:
2021-07-05 18:18:19
阅读次数:
0
本篇参考: https://developer.salesforce.com/docs/atlas.en-us.224.0.api_rest.meta/api_rest/resources_composite_composite.htm https://developer.salesforce.co ...
转换繁体EPUB文件为简体 最近看一本电子书,打开文件后发现内容全都是繁体中文,虽然大部分文字都认识,但看起来还是很费劲,所以想着把文件转换成简体的中文。 epub文件格式 这种文件本身就是一个zip文件,只是后缀为epub,通常文件包含了三部分: mimetype META-INF文件夹 OEBP ...
分类:
其他好文 时间:
2021-07-05 17:50:07
阅读次数:
0
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> </head> <body> <!-- 表单的作用就是用来将用户信息提交给服务器的 比如:百度的搜索框 注册 登录这些操作都需要填写表单 --> <!-- 使用f ...
分类:
其他好文 时间:
2021-07-05 17:48:16
阅读次数:
0
页面1: index.html 1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="UTF-8"> 5 <title>index</title> 6 </head> 7 <body> 8 <!--#include virtual="common/ ...
分类:
Web程序 时间:
2021-07-02 16:41:40
阅读次数:
0