1 df = pd.DataFrame({'A':df.A.repeat(df.B.str.len()),'B':np.concatenate(df.B.values)}) ...
分类:
其他好文 时间:
2019-08-08 00:26:41
阅读次数:
377
1.禁止div点击 //css属性: pointer-events: none; //或者定义属性,在js中添加: $(".原类名").addClass("新类名"); //js: //禁用 $.fn.disable = function () { $(this).addClass("disable ...
分类:
Web程序 时间:
2019-08-07 14:30:28
阅读次数:
166
在我们了解数据库隔离级别前先来回顾一下数据库读数据时可能遇到的问题: (1)脏读 一个事务对数据进行更新操作,但还完成,此时另一事务读取该数据,如果此时第一个事务由于操作失败进行了回滚,那么此时另外事务读取的数据就是脏数据。 (2)不可重复读 例如事务A在读取某一数据,而事务B立马修改了这个数据并且 ...
分类:
数据库 时间:
2019-08-06 00:48:22
阅读次数:
160
You are given a rooted tree with n nodes. The nodes are numbered 1..n. The root is node 1, and m of the nodes are colored red, the rest are black. You ...
分类:
其他好文 时间:
2019-08-04 22:26:07
阅读次数:
187
我的在前两篇文章(水印/验证码)中,我介绍了使用Direct2D给图片加水印/验证码,今天我将其进行了封装,发布了一个NuGet包:Sdcb.Imaging ...
分类:
Web程序 时间:
2019-07-31 23:35:50
阅读次数:
147
一、assets目录:自己创建,通过AssetManager以二进制流的形式读取。 二、res:资源文件 所有的资源文件都会在R.java中生成,可以通过资源id访问。 android:anyDensity="false":禁止跟随密度加载不同文件夹的资源。 layout-480x320布局文件屏幕 ...
分类:
移动开发 时间:
2019-07-31 16:49:24
阅读次数:
160
React Native (一) react native video实现音乐播放器和进度条的功能 功能: 1.卡片滑动切歌 2.显示进度条 效果图: 第三方组件: 1.react native video Github地址:https://github.com/react native commu ...
分类:
其他好文 时间:
2019-07-29 14:13:10
阅读次数:
268
博客皮肤:SimpleMemory 页面定制css 修改body中的backgroud链接即可 ...
分类:
其他好文 时间:
2019-07-28 18:10:16
阅读次数:
95