var slength = $(":checkbox[name='News[show_or_hide]']:checked").size(); if (slength>0 ) { $("div.field-news-o...
分类:
Web程序 时间:
2014-06-28 22:29:55
阅读次数:
255
/** Tween.js* t: current time(当前时间)* b: beginning value(初始值)* c: change in value(变化量)* d: duration(持续时间)*/var Tween = { Linear: function(t, b, c, d...
分类:
其他好文 时间:
2014-06-28 21:03:41
阅读次数:
160
属性名 类型 描述 默认值 required 布尔 定义文本域是否为必填项 falsevalidType 字符串 定义字段的验证类型,比如email, url, etc. nullmissingMessage 字符串 当文本框为空时提示的文本信息 This field is required.inv...
分类:
Web程序 时间:
2014-06-28 20:14:05
阅读次数:
372
长话短说,谢谢大家的关注,这篇写了好长时间,下面继续学习ios。我将用2到3篇的篇幅来学习iphone上的一些常用控件,包括Image View、Text Field、Keyboard、Slider等等,这篇的内容包括ImageView和Keyboard的使用。完成后的效果图如下:1)创建一个新的p...
分类:
移动开发 时间:
2014-06-28 17:52:06
阅读次数:
289
这个相当于是对第一部分的补充说明,主要是想演示一下利用反射机制对一个对象进行拷贝,从而体现出对于Field类和Array类的使用情况。package com.javase.reflectionfuther;public class original { int age; String...
分类:
编程语言 时间:
2014-06-28 16:38:20
阅读次数:
213
Given an array of integers, every element appears three times except for one. Find that single one.Note:Your algorithm should have a linear runtime co...
分类:
其他好文 时间:
2014-06-28 13:44:09
阅读次数:
188
1.类的定义: 在Ext项目开发中,有时会用到只选择年月的日期组件,下面的代码会帮你完成,只需向下面的类拷贝到你的项目中即可使用。Ext.define('Ext.form.field.Month', { extend:'Ext.form.field.Date', alias: 'wid...
分类:
其他好文 时间:
2014-06-28 12:00:41
阅读次数:
164
android开发过程中突然发现的warningEditText 报出 “This text field does not specify an inputType or a hint”原因:EditText需要指定默认输入类型加入android:inputType="number|phone",表...
分类:
移动开发 时间:
2014-06-21 11:20:23
阅读次数:
219
Given an array of integers, every element appears twice except for one. Find that single one.Note:Your algorithm should have a linear runtime complexi...
分类:
其他好文 时间:
2014-06-20 23:34:47
阅读次数:
308
导读:ThinkPHP CURD方法的field方法属于模型的连贯操作方法之一,主要目的是标识要返回或者操作的字段,可以用于查询和写入操作。1、用于查询在查询操作中field方法是使用最频繁的。$Model->field('id,title,content')->select();这里使用field...
分类:
Web程序 时间:
2014-06-20 23:33:35
阅读次数:
250