码迷,mamicode.com
首页 >  
搜索关键字:target    ( 24275个结果
关于mousewheel事件
flash在wmode为opaque或transparent时,AS编写的鼠标滚轮事件失效。在此情况下,只能通过外部的JS实现事件绑定。我的实现代码如下:(已通过firefox,chrome,IE8测试)functionregistMousewheel(id){ function_onmousewheel(e){ vartarget=e.srcElement||e.target; if(mousewhe..
分类:其他好文   时间:2015-02-26 11:51:27    阅读次数:163
网卡mtu 值不同导致rac 2节点ASM不能同时启动 ORA-27550: Target ID protocol check failed.
在安装完10205 rac 后准备配置 asm dg ,发现节点二上的ASM 没法启动: en12 为private 网卡 en13 为 public 网卡 ---->> 查看 oracle asm alert log 报错显示: LMD0 started with pid=6, OS id=565728 LMS0 started with pid=7, OS id=491812...
分类:其他好文   时间:2015-02-26 11:39:52    阅读次数:217
LeetCode Search for a Range
Given a sorted array of integers, find the starting and ending position of a given target value. Your algorithm's runtime complexity must be in the order of O(log n). If the target is not found ...
分类:其他好文   时间:2015-02-25 21:10:33    阅读次数:163
Xcode 插件开发
我最近一年来都在开发ios应用,不过感觉公司的app维护起来非常麻烦。因为公司要为很多个企业订做app,每个app的功能基本相同,只是界面上的一些图片和文字要换掉,功能也有一些小改动。考虑到代码维护的问题,比较好的做法就是只维护一份代码,然后用不同的配置文件来管理各个target的内容。当工程里达到...
分类:其他好文   时间:2015-02-25 18:24:03    阅读次数:242
常见MYSQL导入导出数据命令
导出数据库:mysqldump –uuser -ppassword -hhost databasename > target_20150225.sql打包:tar zcvf target_20150225.sql.tgz target_20150225.sql到新的数据库里新建库:Create da...
分类:数据库   时间:2015-02-25 18:21:21    阅读次数:165
XCode5无法设置Deployment Target的解决办法
使用XCode5创建新项目的时候发现无法修改Deployment Target,只能选择iOS7这是由于XCode5默认会选择在64位的环境下运行,在Build Settings中修改Architectures为Standard architectures(armv7, armv7s),回到Gene...
分类:其他好文   时间:2015-02-24 15:04:43    阅读次数:127
Android注解编程的第一步---模仿ButterKnife的ViewBinder机制
ButterKnife的使用极大方便了Android程序员的开发,实际上,我们可以自己模仿一下实现。 首先就是要了解Java注解的使用。 我们首先要声明一个@interface,也就是注解类:@Target(ElementType.FIELD)//表示用在字段s上@Retention(Ret...
分类:移动开发   时间:2015-02-23 17:49:16    阅读次数:212
Minimum Adjustment Cost
Given an integer array, adjust each integers so that the difference of every adjcent integers are not greater than a given number target.If the array ...
分类:其他好文   时间:2015-02-23 15:26:38    阅读次数:115
标准控件(四)——HyperLink,Image
HyperLink 超链接 拥有Label的所有属性。 Text 超链接的文本 NavigateUrl 超链接的地址,相当于href Target 超链接打开的位置 ImageUrl 图片地址。如果设置此属性,则超链接会变成图片超链接,否则是文字超链接。Image 拥有Label的所有属性。 Im....
分类:其他好文   时间:2015-02-22 23:02:30    阅读次数:157
LeetCode-39 Combination Sum
Given a set of candidate numbers (C) and a target number (T), find all unique combinations inCwhere the candidate numbers sums toT.Thesamerepeated num...
分类:其他好文   时间:2015-02-22 13:21:18    阅读次数:115
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!