会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
微凉徒眸意
博客园
首页
新随笔
联系
订阅
管理
2020年11月21日
es6简单知识点
摘要: 1.let const 关于定义(声明)变量: 之前: var a=12; let a=12 作用域: 全局 函数作用域 let 相当于之前的 var const 常量, 定义好了不能改变 let注意: 1. 没有预解析,不存在变量提升 在代码块内,只要let定义变量,在之前使用,都是报错 先定义完
阅读全文
posted @ 2020-11-21 23:43 微凉徒眸意
阅读(87)
评论(0)
推荐(0)
2020年10月15日
php 遇到问题记录(1)
摘要: 1.php时间及时间戳 <?php echo date("Y/m/d") . "<br>"; echo date("Y.m.d") . "<br>"; echo date("Y-m-d"); //时间戳 $t=time(); echo($t . "<br>"); echo(date("Y-m-d",
阅读全文
posted @ 2020-10-15 18:26 微凉徒眸意
阅读(228)
评论(0)
推荐(0)
2020年10月13日
php基础知识点 (数组查询where)
摘要: 有查询条件就查询, 多个查询条件,只要有查询,就增加一个查询条件 //类型 if($sotype){ $where['type'] = $sotype; } //合作单位 if($companyid){ $where['hezuodanwei'] = $companyid; } //关键词 模糊查询
阅读全文
posted @ 2020-10-13 11:47 微凉徒眸意
阅读(1420)
评论(0)
推荐(0)
php基础知识点:(数组遍历)
摘要: php 4 引入foreach,用于遍历数组的键值对.两种语法结构: 第一种: 获取一个数组的值() foreach( $variable as $value ){ #code; } 例: 1 <?php 2 $arr = array( 1, 2, 3, 4 ); 3 foreach ( $arr
阅读全文
posted @ 2020-10-13 11:43 微凉徒眸意
阅读(143)
评论(0)
推荐(0)
2020年9月28日
jquery layui 用法示例 active
摘要: 活动列表图片 <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="renderer" content="webkit"> <meta http-equiv="X-UA-Compatible" content="IE=edg
阅读全文
posted @ 2020-09-28 17:48 微凉徒眸意
阅读(1829)
评论(0)
推荐(0)
jquery layui 用法示例 point
摘要: 积分列表: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="renderer" content="webkit"> <meta http-equiv="X-UA-Compatible" content="IE=edge
阅读全文
posted @ 2020-09-28 17:40 微凉徒眸意
阅读(297)
评论(0)
推荐(0)
jquery layui用法示例 gift
摘要: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="renderer" content="webkit"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrom
阅读全文
posted @ 2020-09-28 17:29 微凉徒眸意
阅读(394)
评论(0)
推荐(0)
2020年9月9日
jquery工作常见问题
摘要: 1.最简单的数据获取 text() - 设置或返回所选元素的文本内容 html() - 设置或返回所选元素的内容(包括 HTML 标记) val() - 设置或返回表单字段的值 <script> $(document).ready(function(){ $("#btn1").click(funct
阅读全文
posted @ 2020-09-09 17:28 微凉徒眸意
阅读(169)
评论(0)
推荐(0)
2020年8月18日
微信小程序真机获取不到用户openid问题
摘要: wx.login({ success:function(res){ that.wxcode = res.code //获取code 传给后台,后台返回openid后 再进行后续操作 that.get('api/*******', {code:that.wxcode}, function(res){
阅读全文
posted @ 2020-08-18 16:18 微凉徒眸意
阅读(2636)
评论(0)
推荐(0)
2020年7月9日
uniapp跳转至App Store
摘要: plus.runtime.launchApplication({ action: `https://itunes.apple.com/cn/app/xxx-xxx-xx-xx/idxxxxxxxxxx?mt=8` }, function(e) { console.log('Open system d
阅读全文
posted @ 2020-07-09 12:06 微凉徒眸意
阅读(1639)
评论(0)
推荐(0)
下一页
公告