1 /// <summary> 2 /// 根据Key取Value值 3 /// </summary> 4 /// <param name="key"></param> 命名空间: using System.Configuration; using System.Web; 5 public stat ...
水平居中布局 1.margin + 定宽 <div class="parent"> <div class="child">Demo</div> </div> <style> .child { width: 100px; margin: 0 auto; } </style> 相必是个前端都见过,这定宽 ...
分类:
Web程序 时间:
2020-03-14 11:22:34
阅读次数:
77
如果不想使停靠对话框可移动的话,在创建的时候 不要使用WS_CAPTION标题栏这一属性,没有这个属性就不能拖动了, 别的办法还没找到 if (!m_wndFoldersBar.Create(_T("Color Chooser"), this, CRect(0, 0, nFoldersPaneSiz ...
分类:
其他好文 时间:
2020-03-14 10:41:23
阅读次数:
212
在django中使用celery Django版本1.9.8 pip install django-celery Redis要指定版本,默认的3.x版本有问题 Pip uninstall redis pip install redis==2.10.6 创建django的app celery_cour ...
分类:
其他好文 时间:
2020-03-14 00:55:00
阅读次数:
76
系统调用fork()用于创建一个新进程。我们可以通过下面的代码来理解,最好是能自己敲一遍运行验证。 ?#include<stdio.h> #include<stdlib.h> #include<unistd.h> ? int main(int args, char *argv[]){ printf( ...
分类:
其他好文 时间:
2020-03-13 21:02:34
阅读次数:
76
04-树5 Root of AVL Tree (25分) An AVL tree is a self-balancing binary search tree. In an AVL tree, the heights of the two child subtrees of any node dif ...
分类:
其他好文 时间:
2020-03-13 19:01:17
阅读次数:
77
用于使子Widget居中的Widget。包含三个属性: widthFactor 宽度因子,表示为该Widget宽度比子Widget宽度的倍数。 heightFactor 高度因子,表示为该Widget高度比子Widget高度的倍数。 child 包含的子Widget。 Widget getCente ...
分类:
其他好文 时间:
2020-03-13 17:12:11
阅读次数:
50
先放一个例子吧 // 因需求增加提示框,樣式需要增加到容易修改的地方 // 彈框樣式一 沒什麼樣式 去掉了ip地址而已 alert1(name){ var iframe = document.createElement("IFRAME"); iframe.style.display="none"; ...
分类:
其他好文 时间:
2020-03-12 23:29:48
阅读次数:
104
(1)知道子元素的宽高 <!--父元素相对定位--> <!--子元素绝对定位--> .child{ position:absolute; top:50%; left:50%; margin-left:-50px; margin-top:-50px; } (2)不考虑子元素的宽高 <!--父元素不能有 ...
分类:
Web程序 时间:
2020-03-12 14:08:21
阅读次数:
98
function getText(time,callback) { setTimeout(function () { callback(time) },time) } var callbackMap={};//记录加载完成的回调 var resMap={};//记录url var loadbackM ...
分类:
其他好文 时间:
2020-03-11 09:12:58
阅读次数:
65