自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

怪咖先森的博客

小蜗牛,慢慢爬

  • 博客(11)
  • 资源 (4)
  • 收藏
  • 关注

原创 浅析 HTML console

1. 显示信息// 1. 显示信息console.log('hello');console.info('信息');console.error('错误');console.warn('警告');2. 占位符console 支持 printf 的占位符格式,支持的占位符有:字符(%s)、整数(%d或%i)、浮点数(%f) 和对象 (%o)console.log("%d年%d月%d日...

2019-07-30 15:01:05 4521

原创 HTML 数字的处理方法(保留小数点两位、将数字转化为千分位格式)

可参考链接js保留两位小数方法总结代码将 1234567.00 转换为 1,234,567.00<!DOCTYPE html><html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> ...

2019-07-30 14:26:10 20745

原创 HTML 垂直居中body中的应用

应用场景: 在body中书写一个代码块, 使其相对于body垂直居中<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1....

2019-07-30 14:00:54 4326

原创 浅析 HTML input value

1. Input 获取 value<input type="text" value="请输入姓名" name="name" id="name"><script> var name; name = document.getElementById("name").value name = $("#name").val() name = $("i...

2019-07-30 13:52:40 2543

原创 常用的 JS 正则表达式54种形式类型

1.由数字、26个英文字母或者下划线组成的字符串: ^[0-9a-zA-Z_]{1,}$2.非负整数(正整数 + 0 ): ^/d+$3. 正整数: ^[0-9]*[1-9][0-9]*$4.非正整数(负整数 + 0): ^((-/d+)|(0+))$5. 负整数 : ^-[0-9]*[1-9][0-9]*$6.整数: ^-?/d+...

2019-07-30 11:11:52 375

原创 jQuery 验证密码是6位或者8位纯数字

<!DOCTYPE html><html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>JS</title> <script type=...

2019-07-30 11:10:22 4304

原创 AppCan 刷新前一个页面或者调用父页面方法

appcan增加新纪录完了如何刷新主页面AppCan 窗口模块WindowAppCan.window.open 打开的窗口 , 如何在打开的窗口中调用父窗口的方法

2019-07-30 10:43:48 532

原创 JS - 事件 - 获取所有子节点

1. 获取所有子节点<!DOCTYPE html><html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>JS</title> </head> &l...

2019-07-30 10:41:02 12125

原创 HTML 遍历节点的所有 find 到的子节点(jQuery - each() 方法的使用)

<!DOCTYPE html><html lang="zh"><head><title>[html常用脚本整理]</title><meta charset="UTF-8" /><script src="jquery.min.js"></script></head><bod...

2019-07-30 10:19:35 451

原创 html 页面定位到指定位置的4种实现方式

<!DOCTYPE html><html><head> <meta charset="utf-8"></head><style> body { text-align: center; } #go_to { position: fixed; ...

2019-07-30 09:34:32 12573

原创 MySQL 安装

1. 软件安装Download MySQL Community ServerMySQL Downloads2. Sqlyog 安装https://blog.csdn.net/lihua5419/article/details/73881837/

2019-07-24 10:15:40 118

针对 VS MSBuild 不能正确检测字符串 “error:”的修正配置

针对 VS MSBuild 不能正确检测字符串 “error:”的修正配置

2018-05-19

microsoft-windows-netfx3-ondemand-package.cab

用与解决错误: Error Code 0x800F081F when Installing .NET Framework 3.5

2018-05-19

Visual Studio 2017 Professional 15.7.0 bootstrapper(安装器), 很小,只有 1.14 M

Visual Studio 2017 Community 15.7.0 Professional(安装器), 很小,只有 1.14 M

2018-05-12

Visual Studio 2017 Enterprise 15.7.0 bootstrapper (安装器)

Visual Studio 2017 Enterprise 15.7.0 bootstrapper(安装器), 很小,只有 1.14 M

2018-05-12

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除