上一页 1 ··· 32 33 34 35 36 37 38 39 40 ··· 69 下一页
今天用了summernote富文本编辑器,依赖时bootstrap.js,然后今天突然发现,summernote里的下拉菜单无法弹出,看了看aria-expanded属性一直是false,然后查了查网上的说明,发现是bootstrap.js重复引用了,也就是,bootstrap只能引入一份js,否则 Read More
posted @ 2020-02-22 12:42 古墩古墩 Views(975) Comments(0) Diggs(0) Edit
snsArr=str.split(/[(\r\n)\r\n]+/); snsArr.forEach((item,index)=>{ if(!item){ snsArr.splice(index,1);//删除空项 } }) 。 Read More
posted @ 2020-02-22 00:00 古墩古墩 Views(14095) Comments(0) Diggs(0) Edit
如何创建自定义组件? 文档地址:https://developers.weixin.qq.com/miniprogram/dev/reference/api/Component.html 其实和页面是一样一样的 在页面中如何引入自定义组件? 在当前页面的json文件中注册组件 组件名:“相对路径/绝 Read More
posted @ 2020-02-20 08:53 古墩古墩 Views(831) Comments(0) Diggs(0) Edit
小程序在1.5版本以后,支持 bind:tap=“事件名称” 来绑定事件 catch:tap=“事件名称” 也可以用catchtap来绑定事件 还有一些几乎所有组件都有的事件: touchstart:手指开始触摸 touchmove:手指移动 touchcancel:手指触摸被打断,比如说电话来了 Read More
posted @ 2020-02-19 22:46 古墩古墩 Views(822) Comments(0) Diggs(0) Edit
文档地址:https://developers.weixin.qq.com/miniprogram/dev/reference/ 小程序列表渲染其实和vue的很类似,只是有微小的差别 block标签 block和view、text组件不一样,block就是一个标签,不是组件,不会渲染出来的 我们可以 Read More
posted @ 2020-02-19 10:15 古墩古墩 Views(1155) Comments(0) Diggs(0) Edit
组件文档连接:https://developers.weixin.qq.com/miniprogram/dev/component/text.html 小程序中有很多组件,我们只介绍个别组件,小程序文档比较完善,边用边查完全可以,但是我们需要知道有组件这个东西的存在, <text></text>相当 Read More
posted @ 2020-02-18 21:34 古墩古墩 Views(1226) Comments(0) Diggs(0) Edit
启动小程序后,首先会执行App({}),中的声明周期函数。(注册小程序示例) onLauch函数,监听小程序的启动后的函数(监听小程序初始化),可以在这个函数中 进行网路请求,或者获取用户信息。 和App相关的生命周期函数文档:https://developers.weixin.qq.com/min Read More
posted @ 2020-02-18 08:09 古墩古墩 Views(5272) Comments(0) Diggs(0) Edit
我是用vue项目做的表单,其中单选、多选是自己实现的,但是label标签和input关联,在兼容模式下有问题,于是解决了一下,做一下笔记方便以后查阅。 源码: <div v-for="item in roleList" :key="item.id" class="col col-xs-12"> <l Read More
posted @ 2020-02-13 11:16 古墩古墩 Views(374) Comments(0) Diggs(0) Edit
我项目上之前都是用的bootCDN免费开源的, 近段时间bootcdn经常挂掉,导致项目瘫痪, 然后就向着如何在一个cdn挂掉之后,加载另一个cdn平台上的静态资源 网上拿jquery写了个例子: <script type="text/javascript" src="http://ajax.asp Read More
posted @ 2020-02-10 12:54 古墩古墩 Views(1508) Comments(0) Diggs(0) Edit
记得移入依赖 <!-- include libraries(jQuery, bootstrap) --> <link href="http://netdna.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.css" rel="stylesheet"> < Read More
posted @ 2020-02-09 23:23 古墩古墩 Views(1926) Comments(0) Diggs(0) Edit
上一页 1 ··· 32 33 34 35 36 37 38 39 40 ··· 69 下一页