1、点击固定的按钮关闭键盘-(BOOL)textFieldShouldReturn:(UITextField *)textField{ [textField resignFirstResponder]; return YES;}-(BOOL)textView:(UITextView *)text.....
分类:
其他好文 时间:
2015-01-22 21:40:55
阅读次数:
149
web中当我们把text等的宽固定后如果文本框中内容过多就只能看到前面部分的内容,这时我们可以用样式控制当鼠标移到文本框时显示全部内容。var pointX; var pointY; $(function(){ $(".txtstyle").bind("mouseover",function(e.....
分类:
Web程序 时间:
2015-01-22 21:28:35
阅读次数:
284
1.双边距左右浮动的块元素在设定了对应方向的的margin值时,会产生双倍的边距。解决方法:给元素添加 _display: inline;2.双倍缩进inline-block和text-indent样式同时使用时,会使缩进的尺寸加倍。解决方法:不使用inline-block样式;给元素添加float...
分类:
其他好文 时间:
2015-01-22 21:28:32
阅读次数:
147
1、红色为input text只能输入数字和小数点。2、红色为input text只能输入数字和字母。
分类:
其他好文 时间:
2015-01-22 19:43:36
阅读次数:
209
一:easyui-textbox 文本框
定义:inputName" class="easyui-textbox" type="text" />
取值: $('#inputName').textbox('getText');
赋值: $('#inputName').textbox('setText', ‘liang’);
二:easyui-combobox 下拉框
定义...
分类:
其他好文 时间:
2015-01-22 18:23:10
阅读次数:
194
一、返回createTextRange的text和htmlText二、获取指定文本框中的选中的文字:只响应第一个文本框三、页面文本倒序查找abababababababa四、聚焦控件后把光标放到最后五、得到文本框内光标位置六、控制input框内光标位置七、选中文本框中的一段文字八、控制文本框内光标的移...
分类:
其他好文 时间:
2015-01-22 17:52:24
阅读次数:
165
引用 dll Microsoft.Practices.Unity.dll Autofac.dll IContainer 接口 using System;
using System.Collections.Generic;
using System.Linq;
using System.Text; n...
分类:
其他好文 时间:
2015-01-22 17:21:53
阅读次数:
299
在C#中,可以使用foreach语句来遍历数组的元素:using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace Test{ class Program { static vo...
分类:
编程语言 时间:
2015-01-22 17:08:23
阅读次数:
185
HTML vertical text (Safari, Firefox, Chrome, and Opera).vText { -moz-transform: rotate(-90deg) translate(0, 100%); -moz-transform-origin: 0% 100%;...
分类:
Web程序 时间:
2015-01-22 17:07:30
阅读次数:
300
在C#中常用的数组排序的方法有:选择排序法、冒泡排序法、插入排序法和希尔排序法等。一、选择排序法using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace Test{ clas...
分类:
编程语言 时间:
2015-01-22 17:01:04
阅读次数:
212