自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(22)
  • 资源 (6)
  • 收藏
  • 关注

原创 :enabled Selector

jQuery(':enabled')Description: Selects all elements that are enabled.As with other pseudo-class selectors (those that begin with a ":") it is recommended to precede it with a tag name or some ot...

2012-03-25 22:28:48 93

原创 :disabled Selector

jQuery(':disabled')Description: Selects all elements that are disabled.As with other pseudo-class selectors (those that begin with a ":") it is recommended to precede it with a tag name or some ...

2012-03-25 22:27:47 305

原创 :checked Selector

jQuery(':checked')Description: Matches all elements that are checked.The :checked selector works for checkboxes and radio buttons. For select elements, use the :selected selector.Examples:...

2012-03-25 22:26:45 106

原创 :checkbox Selector

jQuery(':checkbox')Description: Selects all elements of type checkbox.$(':checkbox') is equivalent to $('[type=checkbox]'). As with other pseudo-class selectors (those that begin with a ":") it ...

2012-03-25 22:26:11 160

原创 :button Selector

jQuery(':button')Description: Selects all button elements and elements of type button.An equivalent selector to $(":button") using valid CSS is $("button, input[type='button']").Additional N...

2012-03-25 22:25:22 80

原创 Attribute Equals Selector [name="value"]

jQuery('[attribute="value"]')attribute An attribute name. attribute:属性名称 value An attribute value. Can be either an unquoted single word or a quoted string. value:属性值。引号是可选的。 Descr...

2012-03-24 10:19:43 77

原创 Attribute Starts With Selector [name^="value"]

jQuery('[attribute^="value"]')attribute An attribute name. attribute:属性名称 value An attribute value. Can be either an unquoted single word or a quoted string. value:属性值。引号是可选的。Descr...

2012-03-24 10:15:29 95

原创 Attribute Not Equal Selector [name!="value"]

jQuery('[attribute!="value"]')attribute An attribute name. attribute:属性名称 value An attribute value. Can be either an unquoted single word or a quoted string. value:属性值。引号是可选的。Descr...

2012-03-24 10:15:20 85

原创 Attribute Ends With Selector [name$="value"]

jQuery('[attribute$="value"]')attribute An attribute name. attribute:属性名称 value An attribute value. Can be either an unquoted single word or a quoted string. value:属性值。引号是可选的。 Desc...

2012-03-24 10:14:57 82

原创 Attribute Contains Word Selector [name~="value"]

jQuery('[attribute~="value"]')attribute An attribute name. attribute:属性名称 value An attribute value. Can be either an unquoted single word or a quoted string. value:属性值。引号是可选的。 Desc...

2012-03-23 22:49:16 93

原创 Attribute Contains Selector [name*="value"]

jQuery('[attribute*="value"]')attribute An attribute name. attribute:属性名称 value An attribute value. Can be either an unquoted single word or a quoted string. value:属性值。引号是可选的。 Desc...

2012-03-23 22:48:20 89

原创 Attribute Contains Prefix Selector [name|="value"]

jQuery('[attribute|="value"]')attributeAn attribute name.attribute:属性名称valueAn attribute value. Can be either an unquoted single word or a quoted string.value:属性值。引号是可选的。Descriptio...

2012-03-23 22:46:48 189

原创 :animated Selector

jQuery(':animated')Description: Select all elements that are in the progress of an animation at the time the selector is run.描述:选择所有正在执行动画效果的元素。Additional Notes:Because :animated is a jQue...

2012-03-23 22:18:33 117

原创 All Selector (“*”)

Description: Selects all elements.描述:选择所有元素。Caution: The all, or universal, selector is extremely slow, except when used by itself.警示:这个选择器是非常缓慢的,除了自身使用时。Examples:Example: Finds every elem...

2012-03-23 00:33:38 68

原创 .load()

Description: Load data from the server and place the returned HTML into the matched element.version added: 1.0描述:从服务器端加载数据,然后将返回的html内容代替到匹配的元素。起始版本1.0[b].load( url [, data] [, complete(response...

2012-03-20 22:05:23 328

原创 .ajaxSuccess()

.ajaxSuccess( handler(event, XMLHttpRequest, ajaxOptions) ) Returns: jQueryDescription: Attach a function to be executed whenever an Ajax request completes successfully. This is an Ajax Event.versio...

2012-03-20 22:01:13 889

原创 .ajaxStop()

Description: Register a handler to be called when all Ajax requests have completed. This is an Ajax Event.version added: 1.0描述:注册一个当所有ajax请求完成时被执行的处理器。这是一个ajax事件。其实版本1.0.ajaxStop( handler() )h...

2012-03-20 22:00:19 71

原创 .ajaxStart()

Description: Register a handler to be called when the first Ajax request begins. This is an Ajax Event.version added: 1.0描述:注册一个当第一个ajax请求开始时(同时多个ajax请求的情况)执行的处理器。这个一个ajax事件。起始版本1.0.ajaxStart( h...

2012-03-20 21:57:05 91

原创 .ajaxSend()

Description: Attach a function to be executed before an Ajax request is sent. This is an Ajax Event.version added: 1.0描述:绑定一个在ajax请求被发送前执行的函数。这个一个ajax事件。起始版本1.0.ajaxSend( handler(event, jqXHR, a...

2012-03-19 21:05:21 198

原创 .ajaxError()

Description: Register a handler to be called when Ajax requests complete with an error. This is an Ajax Event.描述: 注册一个当ajax请求失败后将被执行的回调函数。 这是一个ajax事件。起始版本:1.0 .ajaxError( handler(event, jqXHR, a...

2012-03-19 14:49:24 136

原创 .ajaxComplete()

Description: Register a handler to be called when Ajax requests complete. This is an Ajax Event.描述: 注册一个当ajax请求完成后将被执行的回调函数。 这是一个ajax事件。起始版本:1.0.ajaxComplete( handler(event, XMLHttpRequest, ajax...

2012-03-18 23:25:57 115

jQuery.ajax()

jQuery.ajax( url [, settings] )描述:执行一个异步的http(ajax)请求

2012-03-18 23:01:24 49

VanDyke SecureFX 7.x 注册机

VanDyke SecureFX 7.x 注册机 亲测7.1.1版本通过 具体安装教程可参考http://wenku.baidu.com/view/6806d2c38bd63186bcebbccf.html

2013-09-27

VanDyke SecureCRT 7.1 注册机

VanDyke SecureCRT 7.1 注册机 亲测 7.1.1 版本通过 具体教程可参考http://wenku.baidu.com/view/6806d2c38bd63186bcebbccf.html

2013-09-27

java jspsmart

jspsmart jspsmart jspsmart

2010-02-22

MySQL5 .1 官方参考手册(中文版)

MySQL 5.1 官方参考手册(中文版)

2010-01-20

sql cookbook 英文版

sql cookbook sql cookbook sql cookbook

2010-01-16

Java程序员上班那点事儿

Java程序员上班那点事儿.pdf Java程序员上班那点事儿.pdf Java程序员上班那点事儿.pdf

2010-01-06

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除