`
szh8715
  • 浏览: 10402 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论
  • 一场雨: 怎么处理汉化的事情?我在里面写汉字 都不行啊
    booklet
文章列表
出处:http://cdc.tencent.c 现在越来越多的大型网站把登录和首页放在一起设计,由此可见登录页面的重要性,一个出彩的登录界面,将提升产品的品质,赋予产品独特的气质,登录 界面也是一个发挥情感化设计、提升用户体验、 ...

booklet

website:http://builtbywill.com/ 1. install booklet plugin 1) Load jQuery and jQuery Ui lib like the follow codes: <script type="text/javascript" src="./jquery-1.5.min.js"></script> <script type="text/javascript" src="./jquery-ui-1.8.9.custom.min.j ...

menu

Usage Markup <div id="mm" style="width:120px;"> <div>New</div> <div> <span>Open</span> <div style="width:150px;"> <div><b>Word</

Layout

UsageMarkupThe layout panel must has one 'center' panel.   HTML <div id="cc" style="width:600px;height:400px;"> <div region="north" title="North Title" split="true" style="height:100px;"></div> <div region="south ...
原文 Analyze Statement The ANALYZE statement can be used to gather statistics for a specific table, index or cluster. The statistics can be computed exactly, or estimated based on a specific number of rows, or a percentage of rows: ANALYZE TABLE employees COMPUTE STATISTICS; ANALYZE INDEX employees_p ...

menu菜单练习

第一步设计页面内容 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>1-5 ...
第一步编写页面内容 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/ht ...

jquery初步

一.dreamwear 安装智能提示插件 网址:http://xtnd.us/dreamweaver/jquery 下载jQuery_API.mxp 插件(见附件),双击即可安装。 注意 Newer versions of Dreamweaver can decipher API's from JavaScript files directly and this extension isn't needed. I do get frequent requests ...

复合类型练习

一、记录类型 1.显示定义 declare type t_record is record( id test.id%type, mc test.mc%type ); var_record t_record; counter number default 0; begin for row_test in (select id,mc from test) loop counter :=counter+1; var_record.id := row_test.id; var_record.mc := row_test.mc; dbms_output.put_line( ...
Knowing the OO basics does not make you a good OO designer. Good OO designs are reusable,extensible and maintainable. Patterns show you how to build systems with good OO design qualities. Patterns are proven object oriented experience. Patterns don’t give you code,they give you general solutio ...

PL/SQL集合与记录

一 PL/SQL集合类型 PL/SQL提供了以下几种集合类型: 索引表,也称为关联数组,可以让我们使用数字或字符串作下标来查找元素。(这有点和其他语言中的哈希表相类似。) 索引表(关联数组)就是键值对的集合,其中键是唯一的,用于确定数组中对应的值。键可以是整数或字符串。第一次使用键来指派一个对应的值就是添加元素,而后续这样的操作就是更新元素。 对于关联数组,可以使用下面的语法进行定义 TYPE type_name IS TABLE OF element_type [NOT NULL] INDEX BY [BINARY_INTEGER | PLS_INTEGER | ...
oracle下安装10g
Global site tag (gtag.js) - Google Analytics