会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
java软件开发
博客园
首页
新随笔
联系
订阅
管理
2020年2月25日
【转】ios下keydown,keyup不兼容解决办法
摘要: 做移动端项目时,需要限制input框可输入内容长度。当时使用了keydown, keyup事件,但是在ios下不生效,代码如下: $('.father')('keydown keyup','input',function(){ console.log('限制可输入内容长度代码') }) 将keydo
阅读全文
posted @ 2020-02-25 16:53 devcoder
阅读(455)
评论(0)
推荐(0)
2020年2月21日
【转】vue 子页面调用父页面常用方式
摘要: 方式一 $parent 父组件 <template> <div> <child></child> </div> </template> <script> import child from './child'; export default { components: { child }, meth
阅读全文
posted @ 2020-02-21 11:03 devcoder
阅读(10902)
评论(0)
推荐(2)
2019年3月25日
【转】移动端常用的四个框架
摘要: 1:weUI 官方网址:https://weui.io/ 官方介绍:WeUI 是一套同微信原生视觉体验一致的基础样式库,由微信官方设计团队为微信内网页和微信小程序量身设计,令用户的使用感知更加统一。 图片发自简书App 优点:做为开发者的我们可以不用写太多css,直接拿过来就可以用。组件都有点击态,
阅读全文
posted @ 2019-03-25 09:39 devcoder
阅读(207)
评论(0)
推荐(0)
2019年3月4日
js调用浏览器打印指定div内容
摘要: --打印按钮事件 function printForm(){ var headstr = '<html xmlns:th="http://www.thymeleaf.org">'+ '<head>'+ '<style type="text/css">'+ 'table-bordered>thead>
阅读全文
posted @ 2019-03-04 11:36 devcoder
阅读(3291)
评论(0)
推荐(0)
2018年12月29日
触发器入门
摘要: 触发器的基础知识和例子 :create trigger tr_name on table/view {for | after | instead of } [update][,][insert][,][delete] [with encryption] as {batch | if update (
阅读全文
posted @ 2018-12-29 11:18 devcoder
阅读(859)
评论(0)
推荐(0)
公告