上一页 1 ··· 108 109 110 111 112 113 114 115 116 ··· 126 下一页
摘要: string str="123abc456";int i=3;1 取字符串的前i个字符 str=str.Substring(0,i); // or str=str.Remove(i,str.Length-i); 2 去掉字符串的前i个字符: str=str.Remove(0,i); // or st 阅读全文
posted @ 2017-11-22 14:16 ThisCall 阅读(483) 评论(0) 推荐(0) 编辑
摘要: var cheLin = "字*符*串" // console.log(cheLin) var array = cheLin.split("*"); array=[ "字",,,,] var cheLin = "字*符*串" // console.log(cheLin) var array = ch 阅读全文
posted @ 2017-11-22 10:20 ThisCall 阅读(5845) 评论(0) 推荐(0) 编辑
摘要: var achearr=[1,2,3,4]; var bchearr=[]; //方法1: for (var i = 0; i <=achearr.length;i++) { bchearr.push(achearr.pop()); } bchearr.push(achearr[0]); conso 阅读全文
posted @ 2017-11-22 10:16 ThisCall 阅读(12752) 评论(0) 推荐(0) 编辑
摘要: wxml 页面 <import src="/pages/lianxi/lianxi.wxml" /> //引入文件 <view style='position:fixed;left:0;top:0;'> <template is="showToastMyTan"> <text>haha</text> 阅读全文
posted @ 2017-11-21 11:17 ThisCall 阅读(603) 评论(0) 推荐(0) 编辑
摘要: //JS data: { navNum:0, navList: [ { id: 1, name: '已预约' }, { id: 2, name: '已消费' }, { id: 3, name: '已取消' }, ], shopList0: [ { id: 1, image: '/imgs/news/ 阅读全文
posted @ 2017-11-20 09:38 ThisCall 阅读(1489) 评论(0) 推荐(0) 编辑
摘要: //wxml <view class='nav-right' bindtap='tobackShop'> <button open-type="share" class='nav-right' style='background:#fff'> <view> <image src='../../img 阅读全文
posted @ 2017-11-16 09:47 ThisCall 阅读(672) 评论(0) 推荐(0) 编辑
摘要: <view> <view class='btn-img'> <image class='image-full' src='../../imgs/index/tab6.png'></image> <contact-button class='section-tel' size="27" session 阅读全文
posted @ 2017-11-16 09:43 ThisCall 阅读(289) 评论(0) 推荐(0) 编辑
摘要: <form action="${pageContext.servletContext.contextPath}/XXX/###" method="post" id="messageForm"> 姓名:<input name = "name" type="text" /> <button type=" 阅读全文
posted @ 2017-11-12 16:39 ThisCall 阅读(240) 评论(0) 推荐(0) 编辑
摘要: Page( { data: { // text:"这是一个页面" storageContent: '', storageSyncContent: '' }, onLoad: function (options) { // 页面初始化 options为页面跳转所带来的参数 }, /** * 异步存储 阅读全文
posted @ 2017-11-08 11:40 ThisCall 阅读(1596) 评论(0) 推荐(0) 编辑
摘要: wx.login({ success: res => { var code = res.code; //返回code // 小程序appid var appId = 'wxd751fc845c90fbd8'; // 小程序密钥 var secret = '6af97b8d384a4c6d7028b7 阅读全文
posted @ 2017-11-07 10:16 ThisCall 阅读(301) 评论(0) 推荐(0) 编辑
上一页 1 ··· 108 109 110 111 112 113 114 115 116 ··· 126 下一页