`
samsongbest
  • 浏览: 162724 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论
文章列表

pd4ml

 
1. pd4ml 读xslt转成pdf 2. pdf转成html
5啦啦啦啦啦了了了了了了了了

style

    博客分类:
  • CSS
例子1 <body class="soria" style="background-color: #9898A5; display: block;height: 100%;width:100%;margin-left: 0px;overflow:hidden" onKeyDown="open();" >   例子2 <div id="mask" style="position:absolute;left:0px;top:0px;width:100%;height:100 ...

soria

    博客分类:
  • Dojo
body 標籤內,我們加上了 class="soria" 的用法。 這個是 Dojo 所提供的一種主題(網頁的 theme)。Dojo 總共有三個 themes, 分別是 tundra、soria、以及 nihilo; 為了能夠使用 Dojo 的主題設定,我們必須引用 soria 的 CSS 檔;另外, 為了能夠充分呈現 Dojo 的效果,我們把 dojo.css 也加進來。如果要加入這些效果, 我們需要以下的設定:   <style type="text/css">@import "dojo/dojo/resources/do ...

dijit.ProgressBar

    博客分类:
  • Dojo
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html dir="ltr"> <head> <style type="text/css"> body,html { font-family: helvetica, arial, sans-serif; font-size: 90%; } </style&g ...

Math函数

Math.pow(2,53)         // => 9007199254740992: 2 to the power 53Math.round(.6)         // => 1.0: round to the nearest integerMath.ceil(.6)         // => 1.0: round up to an integerMath.floor(.6)         // => 0.0: round down to an integerMath.abs(-5)         // => 5: absolute valueMat ...

setTimeout

setTimeout(function, time); 在指定time后执行function。

股经18条

1. 上午不买股。 2. 下午买股。 3. 别看到股票涨了就像个傻逼一样跟风买进,第二天杀跌卖出。    

web.xml

1. servlet在容器启动时加载      <servlet>        <servlet-name>MockStartupServlet</servlet-name>        <servlet-class>servlet.MockStartupServlet</servlet-class>        <load-on-startup>1</load-on-startup>    </servlet>   2. servlet在启动时设初始化参数     <serv ...

Unicode字符列表

http://zh.wikipedia.org/wiki/Unicode%E5%AD%97%E7%AC%A6%E5%88%97%E8%A1%A8   除非有特別指明,否則以下符號皆屬「半形」而非「全形」。 代碼 顯示 描述 U+0020   空格 U+0021 ! 嘆號 U+0022 " 雙引號 U+0023 # 井號 U+0024 $ 價錢/貨幣符號 U+0025 % 百分比符號 U+0026 & 英文「and」的簡寫符號 U+0027 ' 引號 U+0028 ( 開 圓括 ...

g12

*** Locked *** SAGA PVT SHIP S-ON RL HBOOT-2.00.0002 RADIO-3822.10.08.04_M eMMC-boot Aug 22 2011, 15:22:13   bbs.hiapk.com/forum.php?mod=viewthread&tid=3201909&reltid=3107829&pre_pos=5&ext=CB   http://bbs.dospy.com/viewthread.php?tid=13547769&bbsid=441

for/in循环

1. for/in 遍历对象属性成员。 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>TestJS</title> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> </head> <script type = &q ...
1. 加入JS <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>TestJS</title> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> </head> <script type = "text/java ...

DB2常用知识

    博客分类:
  • DB2
1.系统表SYSIBM.SYSCOLUMNS 可获得表的字段类型,长度等信息 SELECT * FROM SYSIBM.SYSCOLUMNS WHERE TBNAME = '表名' AND TBCREATOR = 'schma名' ORDER BY COLNO FOR FETCH ONLY WITH UR   2. FOR FETCH ONLY WITH UR UR stays for Uncommited Read. If you use it, you may get some pieces of information that are "out of date&q ...
第二章 语法结构 1. 在换行处, JavaScript只有在缺少了分号就无法正确解析代码的时候,才会填补分号。     如: var a a = 3 解析为: var a; a = 3;    
Global site tag (gtag.js) - Google Analytics