- 浏览: 62318 次
最新评论
文章列表
create table computers
(
comNo number(4) constraint PK_comp primary key,
compModel varchar2(64) constraint unique_comp unique,
buyTime date,
price number(12,2) constraint ch_price check(
price>0 and price<=300000),
owner varchar2(32));
DECLARE
i number := 0;
BEGIN
for i in 1 .. 3000 ...
- 2015-06-14 10:19
- 浏览 745
- 评论(0)
来自本人oracle最新sql回忆性演练1一篇博文http://blog.csdn.net/luozhonghua2014/article/details/45729669
只所以重新发布一次,就是抽取经验,让大家可以找到解决方法
--------处理已有数据的字段类型修改(前4步操作会使表中的约束丢失)
--1重命名字段
alter table example rename column id to sid;
--2添加id字段
alter table example add id varchar2(200);
--3更新数据
upda ...
- 2015-06-14 10:11
- 浏览 394
- 评论(0)
create table small_customers
(customer_id number,
sum_orders number)
;
create table medium_customers
(customer_id number,
sum_orders number)
;
create table large_customers
(customer_id number,
sum_orders number)
;
select * from small_customers ;
select * from medium_customers ;
sele ...
- 2015-06-07 23:56
- 浏览 270
- 评论(0)
要说jQuery 最成功的地方,我认为是它的可扩展性吸引了众多开发者为其开发插件,从而建立起了一个生态系统。这好比大公司们争相做平台一样,得平台者得天下。苹果,微软,谷歌等巨头,都有各自的平台及生态圈。
学会使用jQuery并不难,因为它简单易学,并且相信你接触jQuery后肯定也使用或熟悉了不少其插件。如果要将能力上升一个台阶,编写一个属于自己的插件是个不错的选择。
本教程可能不是最精品的,但一定是最细致的。
jQuery插件开发模式
软件开发过程中是需要一定的设计模式来指导开发的,有了模式,我们就能更好地组织我们的代码,并且从这些前人总结出来的模式中学到很多好的实 ...
- 2015-06-07 20:13
- 浏览 283
- 评论(0)
no1:
// Define a local copy of jQuery
var jQuery = function( selector, context ) {// The jQuery object is actually just the init constructor 'enhanced'return new jQuery.fn.init( selector, context, rootjQuery ); //调用第二步init方法},
no2:
jQuery.fn = jQuery.prototype = {constructor: jQuery,init: functio ...
- 2015-05-31 23:06
- 浏览 349
- 评论(0)
a && b : 将a, b转换为Boolean类型, 再执行逻辑与, true返回b, false返回aa || b : 将a, b转换为Boolean类型, 再执行逻辑或, true返回a, false返回b转换规则:对象为true非零数字为true非空字符串为true其他为false
- 2015-05-31 18:59
- 浏览 176
- 评论(0)
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<TITLE> New Document </TITLE>
<script language=javascript>
function utf8to16(str) {
var out, i, len, c;
var char2, char3;
out = "";
len = str.leng ...
- 2015-05-24 11:31
- 浏览 803
- 评论(0)
先测试下:
debugger
if(!window.attachEvent && window.addEventListener)
{
Window.prototype.attachEvent = HTMLDocument.prototype.attachEvent=
HTMLElement.prototype.attachEvent=function(en, func, cancelBubble)
{
var cb = cancelBubble ? true : false;
this.addEventListener( ...
- 2015-05-22 23:04
- 浏览 215
- 评论(0)
//整个extend函数代表着如何寻找过来的参数(可以是任何对象【数组也是对象】),返回需要的对象。在javascirpt中extend理论之一是合并或复制对象。那么如何<pre name="code" class="javascript">复制<span style="font-family: Arial, Helvetica, sans-serif;">呢?基本的理论在我的http://blog.csdn.net/luozhonghua2014/article/details/45790867文章中。jque ...
- 2015-05-21 23:45
- 浏览 221
- 评论(0)
外部插件:
$.fn.tinytip = function(text, customOptions) {debugger;
if (text && typeof text === 'object'){
customOptions = text;
text = customOptions.tooltip;
}
var options = $.extend({}, tooltip_options, customOptions);
options.tooltip = text;
if (typeof opt ...
- 2015-05-21 23:08
- 浏览 223
- 评论(0)
//简单的
test.js
;(function($){
$.fn.getData=function(options){
return this.append(options);
}
})(jQuery);
test.html
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<script type='text/javascript' src='http://code.jquery.com/jquery-1.7.1 ...
- 2015-05-18 21:55
- 浏览 314
- 评论(0)
/*!
* jQuery lightweight plugin boilerplate
* Original author: @ajpiano
* Further changes, comments: @addyosmani
* Licensed under the MIT license
*/
// the semi-colon before the function invocation is a safety
// net against concatenated scripts and/or other plugins
// that are not closed prope ...
- 2015-05-17 23:26
- 浏览 263
- 评论(0)
var x = 42;
console.log( x );
var message = (function( x ){
return function() {
console.log( "x is " + x );
}
})( x );
message();
x = 12;
console.log( x );
message();
----------------------p47 自执行匿名函数 ()
//对象 p42
$.extend(obj1,obj2,obj3)//合并
$.extend({},obj)//复制
$.extend(true, ...
- 2015-05-17 17:55
- 浏览 268
- 评论(0)
框架下载地址:http://modernizr.com/
案例:
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-1.7.1.js"></script>
<script src="http://ajax.cdnjs.com/ajax/libs/modernizr/1.7/modernizr-1.7.min.js">
</script>
...
- 2015-05-17 16:27
- 浏览 252
- 评论(0)
//用户自定义选择器
$(function(){
// Define custom filter by extending $.expr[":"]
$.expr[":"].greenbg = function(element) {
return $(element).css("background-color") === "rgb(0, 128, 0)";
};
var n = $(":greenbg").length;
console.lo ...
- 2015-05-17 12:19
- 浏览 249
- 评论(0)