<table id="demo" lay-filter="test"></table> <script type="text/html" id="barDemo"> <a class="layui-btn layui-btn-xs" lay-event="edit">查看详情</a></script ...
分类:
其他好文 时间:
2020-06-30 14:48:54
阅读次数:
218
<img :src="ImgUrl" alt="" width="100%" @mousewheel="zoomimg($event)" id="ScrollImg"> // 缩放图片 zoomimg(event) { var delta = 0; if (!event) event = windo ...
分类:
Web程序 时间:
2020-06-30 13:11:58
阅读次数:
91
AtomicReference An object reference that may be updated atomically. The AtomicReference class provides reference objects that may be read and written ...
分类:
其他好文 时间:
2020-06-30 12:37:08
阅读次数:
65
文本文件的换行符 方法一: var EOL = fileContents.indexOf("\r\n") >= 0 ? "\r\n" : "\n"; 方法二: var EOL = (process.platform 'win32' ? '\r\n' : '\n') 删除文件 var fs = req ...
分类:
Web程序 时间:
2020-06-29 20:12:49
阅读次数:
82
1、view代码 <view class="imgShow" v-for="(item,index) in list" :key="index"> <image :src="item.image_path" @touchstart.prevent="touchstart(index)" @touch ...
分类:
移动开发 时间:
2020-06-29 18:28:39
阅读次数:
234
jquery中的事件是对javascript事件的封装 基础事件 鼠标事件 --当用户在文档上移动或单击鼠标时产生的事件 方法 描述 执行时机 click( ) 触发或将函数绑定到指定元素的click事件 单击鼠标时 mouseover( ) 触发或将函数绑定到指定元素的mouseover事件 鼠标 ...
分类:
Web程序 时间:
2020-06-29 13:45:26
阅读次数:
98
MIMIC-III 免费公开的重症监护医学信息数据库。包含2001年至2012年之间进入重症监护病房的成年患者的53423例不同的医院入院数据和2001年至2008年之间收治的7870名新生儿数据。 Home | Github | Doc Tables 数据库总共包含26个数据表 admission ...
分类:
其他好文 时间:
2020-06-29 11:31:02
阅读次数:
182
IOS active 状态失效问题 失效原因 By default, Safari Mobile does not use the :active state unless there is a touchstart event handler on the relevant element or ...
分类:
移动开发 时间:
2020-06-29 00:21:02
阅读次数:
69
对象中的方法 methods: { onTap(){ //简写形式的 方法 }, onTap: function (event) { //传统形式的 方法 }, onTap: ()=>{ //箭头函数形式的 方法 }, function onTap(){ //错误,这是函数,不是方法 } } 函数 ...
分类:
其他好文 时间:
2020-06-28 20:49:59
阅读次数:
145
1、确保绑定元素的正确性。尽量对一个图元进行绑定事件。 2、确保图层的顺序。例如,你编写了一个tooltip功能。mouseover元素A后,tooltip图层的z-index一定比当前元素A的z-index大的,这可能就形成tooltip组件对元素A的覆盖问题。鼠标稍微移动,会自动触发元素A的mo ...
分类:
其他好文 时间:
2020-06-28 18:40:21
阅读次数:
54