上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 65 下一页
摘要: 微擎使用腾讯地图拾取坐标 注意点: 传过去的backurl参数中,如果有 & 要将其替换成 %26,不然返回来的结果中不能识别调转链接 参考链接 示例代码: <div class="mui-input-row"> <label for="address">地址</label> <input type 阅读全文
posted @ 2019-11-11 18:58 GetcharZp 阅读(487) 评论(0) 推荐(0) 编辑
摘要: 使用 MUI 自制 弹出层 <div class="zp-mask" style="display: none; width: 100%;height: 100%;background-color: rgba(0,0,0,0.45); position: fixed;top: 0px;left: 0 阅读全文
posted @ 2019-11-11 16:07 GetcharZp 阅读(1371) 评论(0) 推荐(0) 编辑
摘要: mui 底部导航栏 <nav class="mui-bar mui-bar-tab " id="nav"> <a class="mui-tab-item mui-active" id="a1"> <span class="mui-icon mui-icon-home"></span> <span c 阅读全文
posted @ 2019-11-08 11:36 GetcharZp 阅读(279) 评论(0) 推荐(0) 编辑
摘要: PHP 向数组头部插入数据 函数: array_unshift() 示例: $s = array('a' => 0, 'b' => 3); array_unshift($s, '5'); print_r($s); 阅读全文
posted @ 2019-11-08 11:24 GetcharZp 阅读(2361) 评论(0) 推荐(0) 编辑
摘要: a 标签添加 onclick 事件 <a href="javascript:void(0);" οnclick="js_method()">点击</a> 阅读全文
posted @ 2019-11-07 14:20 GetcharZp 阅读(691) 评论(0) 推荐(0) 编辑
摘要: # & 等特殊字符会导致 post 传参失败 处理方法使用 encodeURIComponent 将字符串转化一下 实例 // toUpperCase() 转化为大写字母 var catecolor = "#00FFFF"; var catecolor = encodeURIComponent(ca 阅读全文
posted @ 2019-11-06 16:55 GetcharZp 阅读(842) 评论(0) 推荐(0) 编辑
摘要: HTML 颜色输入框修改事件的触发,以及获取修改后的颜色 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body style=" "> <input type= 阅读全文
posted @ 2019-11-06 16:12 GetcharZp 阅读(383) 评论(0) 推荐(0) 编辑
摘要: 微擎发送模板消息 参考链接 $openid = 'oXo3is-YksITdG35n4tTKBKog'; // “未处理消息提醒”消息模板 $tpl_id='G0_VQBsYx_iJKKkb3vj3_Y4D4mPPEyEYpmzT9rLT3b0'; //跳转链接 $url='http://www.b 阅读全文
posted @ 2019-11-06 12:11 GetcharZp 阅读(1330) 评论(0) 推荐(0) 编辑
摘要: LeetCode 35. 搜索插入位置 给定一个排序数组和一个目标值,在数组中找到目标值,并返回其索引。如果目标值不存在于数组中,返回它将会被按顺序插入的位置。 你可以假设数组中无重复元素。 示例 1: 输入: [1,3,5,6], 5输出: 2 知识点: array_search(); // 在数 阅读全文
posted @ 2019-11-05 20:49 GetcharZp 阅读(91) 评论(0) 推荐(0) 编辑
摘要: 将 /u 转变为 utf-8 编码 PHP实例: $result = {"errno":-1,"message":"\u8bbf\u95ee\u5fae\u4fe1\u63a5\u53e3\u9519\u8bef, \u9519\u8bef\u4ee3\u7801: 40037, \u9519\u8 阅读全文
posted @ 2019-11-05 18:06 GetcharZp 阅读(572) 评论(0) 推荐(0) 编辑
上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 65 下一页