10 2017 档案
摘要:import { App } from 'ionic-angular'; 请勿使用 this.navCtrl.push(nextPage);或者在app.module.ts设置tabsHideOnSubPages 需要先获取root页面,从root页面进行跳转即可: this.app.getRoot
阅读全文
摘要:function is_weixn(){ var ua = navigator.userAgent.toLowerCase(); if(ua.match(/MicroMessenger/i)=="micromessenger") { return true; } else { return fals
阅读全文
摘要:最近在做手机页面时,遇到数字输入的键盘的问题,之前的做法只是一刀切的使用 type="tel",不过一直觉得九宫格的电话号码键盘上的英文字母太碍事了。于是想要尝试其它的实现方案,最终的结论却令人沮丧。不过也趁机详细了解了下pattern这个属性。 type="tel" 和 type="number"
阅读全文