`
文章列表
public class SequenceNumber { // ①通过匿名内部类覆盖ThreadLocal的initialValue()方法,指定初始值 private static ThreadLocal<Integer> seqNum = new ThreadLocal<Integer>() { public Integer initialValue() { return 0; } }; // ②获取下一个序列值 public int getNextNum() { seqNum.set(seqNum.get() + 1); retu ...
my %map = ( ';' => "%3B", ',' => "%2C", '=' => "%3D", ); my $converter = generate_converter(\%map); my $a = ';,= '; warn $converter->($a); sub generate_converter { my ($ref_map) = @_; my $converter = sub { my ($str) = @_; $str =~  s/([;,=])/$ref_m ...
        YUI().use("node", "io", "json-parse", function(Y) {             function handleSuccess(ioId, o) {                 console.log('-------------' + o.responseText) ;                 var inboxString = o.responseText;                 /[^}{]+?unread[^}{]+?(\d+)[^{}]+?f ...
perl 新手     if,else,for 之类的控制循环结构     了解 Perl 的常用特别的符号     能使用数组和 Hash     了解和会使用一些基本的函数     基本可以使用 Perl 代替 shell 的事情     会安装 Perl 模块(cpan,cpanp,cpanm)     能很好 ...
首先保证系统中的diff命令是可用的。Vim的diff模式是依赖于diff命令的。Vimdiff的基本用法就是: # vimdiff  FILE_LEFT  FILE_RIGHT 或者 # vim -d  FILE_LEFT  FILE_RIGHT 除了用这种方法启动vim的diff模式之外,我们还可以用分割窗口命令来启 ...
window.close关闭窗口,不弹出系统提示,直接关闭   window.opener=null; window.open("","_self"); window.close();   IE8下若只有window.close();会有对话框提示,FF下不会  
使用maven配置依赖, 配置从http://www.mvnrepository.com搜索 <dependency>     <groupId>org.springframework.security</groupId>     <artifactId>spring-security-core</artifactId>     <version>2.0.0</version> </dependency> <dependency>     <gr ...

CSS 定位

    博客分类:
  • css
CSS中有三种定位机制: 1. 普通流(normal flow) 2. 浮动(float) 3. 定位(position) 除非专门制定, 默认为普通流。   IE6双边距BUG,发生情况:当元素进行浮动的时候, 并且有空白边, 把浮动模式设置成内联, display:inline 清除浮动:1.over-flow:hidden 2. .class{clear:both}
在CSS中关于换行的属于有两个分别是word-break 以及white-space ,其中word-break是IE的专有属性. word-break有三个参数:normal、break-all、keep-all normal :  依照亚洲语言和非亚洲语言的文本规则,允许在字内换行 break-all :  该行为与亚洲语言的normal相同。也允许非亚洲语言文本行的任意字内断开。该值适合包含一些非亚洲文本的亚洲文本 keep-all :  与所有非亚洲语言的normal相同。对于中文,韩文,日文,不允许字断开。适合包含少量亚洲文本的非亚洲文本 由于是要 ...
Issue the following command to create a table for the Link data model in the database:$ python manage.py syncdb You can examine the SQL query generated by Django by running the following command:$ python manage.py sql bookmarks The power of Django's Python database API does not stop at creating ...
YUI extend ( r , s , px , sx ) : 只继承prototype中的方法,不继承构造函数内的私有属性和私有成员以及共有成员,并且可以为它的子类添加prototype属性,为构造函数添加私有属性 r /Function/ 该函数被修改 s /Function/ 被继承的构造函数 px /Object/ 公共属性添加到子类中 sx /Object/ 静态成员添加到子类中   Y. augment ( r , s , ov , wl , args ) :扩充构造函数的原型属性 r /Fu ...
*.location.href 用法:   top.location.href=”url”          在顶层页面打开url(跳出框架)    self.location.href =”url”         仅在本页面打开url地址   parent.location.href=”url”      在父窗口打开Url地址   this.location.href=”url”       用法和self的用法一致      if (top.location == self.location) 判断当前location 是否为顶层来 禁止frame引用    如果 ...
学习了下YUI3, 比jquery大多了, 查文档不像jquery那样方便 , 把学到的东西在这记一下, 方便查找。 使用YUI().use("node",function(Y)) {}时候, node的意思就是对dom的基本操作(个人理解) Y.one("#idname")相当于document.getEl ...
~ tilde (sounds like til-da); be prepared to explain to computer-illiterate people saying “you know, the wave-shaped thingy” ! exclamation; commonly read as bang in case of #!/bin/sh @ at # pound; but commonly read as shee in case of #!/bin/sh, not sure why $ dollar % per ...
SELECT c.tablespace_name tablespace_name, ROUND(a.bytes/1048576,2) total_size,ROUND((a.bytes-b.bytes)/1048576,2) used_size,ROUND(b.bytes/1048576,2) free_size, ROUND(b.bytes/a.bytes * 100,2)||'%' free_pct FROM (SELECT tablespace_name,
Global site tag (gtag.js) - Google Analytics