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
属性名 类型 描述 默认值 required 布尔 定义文本域是否为必填项 falsevalidType 字符串 定义字段的验证类型,比如email, url, etc. nullmissingMessage 字符串 当文本框为空时提示的文本信息 This field is required.inv...
分类:
Web程序 时间:
2014-06-28 20:14:05
阅读次数:
372
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
导读:ThinkPHP CURD方法的field方法属于模型的连贯操作方法之一,主要目的是标识要返回或者操作的字段,可以用于查询和写入操作。1、用于查询在查询操作中field方法是使用最频繁的。$Model->field('id,title,content')->select();这里使用field...
分类:
Web程序 时间:
2014-06-20 23:33:35
阅读次数:
250
BACKGROUNDThe field of invention relates to the computer sciences, generally, and, more specifically, to the thermal management of components other th...
分类:
其他好文 时间:
2014-06-18 22:26:38
阅读次数:
272
织梦菜单导航调用特定栏目的修改正常:{dede:channel type='top' row='10' currentstyle="~typename~"} [field:typename/] {/dede:channel}变成:{dede:channelartlist typeid="2...
分类:
其他好文 时间:
2014-06-18 19:03:16
阅读次数:
3850
首页标签: 导航标签: {dede:channel row="10" type="top" col="2" currentstyle="~typename~" } [field:typename/] {/dede:channel} 文章列表: {dede:...
分类:
其他好文 时间:
2014-06-18 08:13:01
阅读次数:
314
extjs4.2控制form表单中field等组件的宽度。首先,确保form的layout是‘anchor’的。然后,在代码中配置anchor属性,如下图:initComponent:function(){
this.items=[{
xtype:‘textfield‘,
padding:‘10005‘,
anchor:‘30%‘,
fieldLabel:‘申请书编号‘,
name:‘appNum‘
},{
xtype:‘..
分类:
Web程序 时间:
2014-06-17 17:36:45
阅读次数:
293
1 import java.lang.reflect.Field; 2 3 import org.junit.Test; 4 5 //反射字段 6 public class Demo2 { 7 8 // 反射字段:public String name="aaaa" 9 @Te...
分类:
其他好文 时间:
2014-06-17 12:55:38
阅读次数:
290
1、在Lucene4.x前,使用以下方式创建一个Field:
Field field = new Field("filename", f.getName(), Field.Store.YES, Field.Index.NOT_ANALYZED);
Field field = new Field("contents", new FileReader(f));
Field field = new...
分类:
其他好文 时间:
2014-06-16 14:43:13
阅读次数:
242