码迷,mamicode.com
首页 >  
搜索关键字:sel    ( 12804个结果
jquery之on()绑定事件和off()解除绑定事件
off()函数用于移除元素上绑定的一个或多个事件的事件处理函数。off()函数主要用于解除由on()函数绑定的事件处理函数。该函数属于jQuery对象(实例)。语法jQuery 1.7 新增该函数。其主要有以下两种形式的用法:用法一:jQueryObject.off( [ events [, sel...
分类:Web程序   时间:2015-02-27 11:25:45    阅读次数:543
SP-Sample2
USE [APPLICATION_DEV]GO/****** Object: StoredProcedure [dbo].[SPAA_APPLICATION_LIST_SEL] Script Date: 12/08/2014 15:13:58 ******/SET ANSI_NULLS ON...
分类:其他好文   时间:2015-02-25 07:01:02    阅读次数:245
SP-sample
USE [APPLICATION_DEV]GO/****** Object: StoredProcedure [dbo].[SPAA_SEL_INFO_LIST] Script Date: 12/08/2014 14:49:58 ******/SET ANSI_NULLS ONGOSET Q...
分类:其他好文   时间:2015-02-25 07:00:52    阅读次数:179
iOS开发之oc(十)--类的本质、description、SEL
(一)类的本质1.类也是个对象其实类也是一个对象,是Class类型,简称“类对象”。// Class类型的定义typedef struct objc_class *Class;// 类名就代表着类对象,每个类只有一个类对象2.+load和+initialize+load> 在程序启动的时候会加载所有...
分类:移动开发   时间:2015-02-24 17:26:53    阅读次数:215
JavaScript把字符串动态显示到下拉列表
functionBuildSel(str,sel) { sel.options.length=0; vararrstr=newArray(); arrstr=str.split(",");//把字符串按逗号拆分成数组元素 if(str.length>0) { for(vari=0;i<arrstr.length;i++) { varsubarrstr=newArray(); subarrstr=arrstr[i].split("|");//按|拆分成低级数..
分类:编程语言   时间:2015-02-16 19:46:36    阅读次数:226
jquery扩展获取光标位置
(function($){$.fn.extend({insertAtCaret: function(myValue){var $t=$(this)[0];if (document.selection) {this.focus();sel = document.selection.createRang...
分类:Web程序   时间:2015-02-11 12:26:29    阅读次数:162
Sublime Text 2之Emmet插件安装及使用
1.安装EmmetHow To Install?Reffer to this link:http://www.ituring.com.cn/article/473102.使用Emmet--Abbreviations SyntaxEmmet uses syntax similar to CSS sel...
分类:其他好文   时间:2015-02-06 18:39:36    阅读次数:244
联动下拉菜单
<!doctypehtml><html><head><metacharset="utf-8"><title>联动下拉菜单</title><script>window.onload=function(){vars1=newSel(‘div1‘);s1.add(‘0‘,[‘1‘,‘2‘,‘3‘]);s1.add(‘0_0‘,[‘1_1‘,‘1_2‘,‘1_3‘]);s1.add(‘0_0_0‘,[‘1_1_1‘,‘1_..
分类:其他好文   时间:2015-02-06 16:55:30    阅读次数:156
leetcode_121_Best Time to Buy and Sell Stock
版权所有,欢迎转载,转载请注明出处,谢谢 Say you have an array for which the ith element is the price of a given stock on day i. If you were only permitted to complete at most one transaction (ie, buy one and sel...
分类:其他好文   时间:2015-02-06 13:22:16    阅读次数:121
oc语言--description方法和sel
一、description方法Description方法包括类方法和对象方法。(NSObject类所包含)(一)基本知识-description(对象方法)使用NSLog和@%输出某个对象时,会调用对象的description方法,并拿到返回值进行输出。+description(类方法)使用NSLo...
分类:编程语言   时间:2015-02-02 17:21:39    阅读次数:181
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!