上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 65 下一页
摘要: 简单来说分两步走: 1、配置项目根目录的 app.json 文件中的 navigateToMiniProgramAppIdList { "pages": [ "pages/index/index" ], "navigateToMiniProgramAppIdList": [ "小程序APYID" ] 阅读全文
posted @ 2019-12-17 15:08 GetcharZp 阅读(570) 评论(0) 推荐(0) 编辑
摘要: wx.canIUse(); 微信文档中定义在API中,可以理解为一个函数。 返回值: true 或者 false 示例: // 在JS文件的函数中进行使用 console.log(wx.canIUse('console.log')); // 输出:true 阅读全文
posted @ 2019-12-16 10:33 GetcharZp 阅读(1484) 评论(0) 推荐(0) 编辑
摘要: wxml: data-参数名="值" bindtap="函数名" <view class="buy-button {{cap_select == 100 ? 'zp-active': ''}}" data-cap="100" bindtap="choose_cap"> <text>100ML \n 阅读全文
posted @ 2019-12-12 09:56 GetcharZp 阅读(4837) 评论(0) 推荐(0) 编辑
摘要: 不转换成JSON 会报错 Unexpected identifier 方法: JSON.stringify(对象) 阅读全文
posted @ 2019-12-06 16:22 GetcharZp 阅读(594) 评论(0) 推荐(0) 编辑
摘要: 微擎form表单进行GET提交时,要传递 name 分别为 c , a , m , do 的值 例如: <form action="{php echo $this->createWebUrl($filename, array('op' => 'display'))}" class="form-inl 阅读全文
posted @ 2019-12-05 11:29 GetcharZp 阅读(373) 评论(0) 推荐(0) 编辑
摘要: 修改 app.json 文件即可 "tabBar": { "selectedColor": "#1296db", "list": [ { "pagePath": "pages/index/index", "text": "首页" }, { "pagePath": "pages/setting/set 阅读全文
posted @ 2019-12-04 17:32 GetcharZp 阅读(514) 评论(0) 推荐(0) 编辑
摘要: jquery 中 html与text函数的区别 共同点:它们都能讲函数中的参数渲染到页面中; 异同点: text() 只是简单的讲参数的内容写入到页面中; html() 会根据参数的值,判断是否字体符号之类的,并进行对应的html类型的解析 阅读全文
posted @ 2019-12-03 22:07 GetcharZp 阅读(302) 评论(0) 推荐(0) 编辑
摘要: JQuery 时间戳转时间 var date = new Date(stocks[i]['create_time'] * 1000); var y = date.getFullYear(); var m = "00" + (date.getMonth() + 1).toString(); m = m 阅读全文
posted @ 2019-11-28 16:51 GetcharZp 阅读(157) 评论(0) 推荐(0) 编辑
摘要: 设置输入框之只能输入正整数,同时,其长度最大只有3位 <input type="text" maxlength="3" placeholder="请输入数量,最大 999" onkeyup="value=value.replace(/^(0+)|[^\d]+/g,'')"> 阅读全文
posted @ 2019-11-27 14:46 GetcharZp 阅读(532) 评论(0) 推荐(0) 编辑
摘要: JQuery 处理 微擎传递过去数据 PS:微擎得到的数据大多数是数组(我们这里处理数组) 将数组使用 json_encode() 函数处理成 JSON 格式 前端在 script 中使用 引号 将变量括起来即可得到后台设定的数据 使用 $.parseJSON() 函数转换成jquery可以处理的对 阅读全文
posted @ 2019-11-27 11:45 GetcharZp 阅读(229) 评论(0) 推荐(0) 编辑
上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 65 下一页