码迷,mamicode.com
首页 >  
搜索关键字:placeholder    ( 1167个结果
spring配置属性的两种方式
spring配置属性有两种方式,第一种方式通过context命名空间中的property-placeholder标签 第二种方式通过创建bean,对应类为PropertyPlaceholderConfigurer 第一种方式精短易读,第二种方式更通用,不搞特权,各有各的好处. 经过测试,这两种方式都 ...
分类:编程语言   时间:2016-06-16 17:38:46    阅读次数:200
修改placeholder的字体颜色
第一种 UIColor *color = [UIColor whiteColor]; _userName.attributedPlaceholder = [[NSAttributedString alloc] initWithString:@"用户名" attributes:@{NSForegrou ...
分类:其他好文   时间:2016-06-12 18:09:29    阅读次数:130
html5新特性
分类: 增加的标签:header,footer,hgroup,mark,figure,figcaption,audio,video,control 增加的属性:placeholder,required,autofocus,mail, 去掉的属性:link的type属性,script的type属性 正 ...
分类:Web程序   时间:2016-06-09 06:18:48    阅读次数:182
html5的Form新特性
form新增的输入型控件: Form新增表单特性和函数 placeholder : 输入框提示信息。 autocomplete : 是否保存用户输入值。默认为on,关闭提示选择off。 autofocus : 指定表单获取输入焦点。 list和datalist : 为输入框构造一个选择列表。 lis ...
分类:Web程序   时间:2016-06-04 13:36:17    阅读次数:192
修改 Input placeholder 的样式
...
分类:其他好文   时间:2016-06-04 13:27:27    阅读次数:108
textarea placeholder 换行问题处理
APP中嵌入webview时碰到的文字对齐需求----主测chromefirefoxsafari第一感觉就是直接在placeholder属性中写入\n<br>之类的,然而并没什么用网上查了下各种说辞不一,归纳总结如下:有效方法列表:·类似\n的解决方式如:[1]placeholder="Line1&#13;&#10;Line2"[2..
分类:其他好文   时间:2016-06-03 15:55:06    阅读次数:202
input placeholder兼容ie10以下
代码如下: 其中 由于jQuery 1.9.0 以上版本 jquery去掉了对 $.browser 的支持,采用$.support 来判断浏览器类型。导致之前的很多插件报错 "Uncaught TypeError: Cannot read property 'msie' of undefined". ...
分类:其他好文   时间:2016-06-02 13:20:56    阅读次数:150
ie9 placeholder兼容
.phcolor{ color:#999;}//css样式 function isPlaceholer(){ var input = document.createElement("input"); return "placeholder" in input; }; function placeho ...
分类:其他好文   时间:2016-05-31 01:02:10    阅读次数:137
为 placeholder 自定义样式
textarea::-webkit-input-placeholder{ padding: 1em; } textarea::-moz-placeholder{ padding: 1em; } 同理,input的定义方法为: input::-webkit-input-placeholder{ pad ...
分类:其他好文   时间:2016-05-29 19:56:23    阅读次数:120
jquery ui 插件------------------------->sortable
<!doctype html><html lang="en"><head> <meta charset="utf-8"> <title>jQuery UI Sortable - Drop placeholder</title> <link rel="stylesheet" href="https:/ ...
分类:Web程序   时间:2016-05-29 14:52:01    阅读次数:372
1167条   上一页 1 ... 70 71 72 73 74 ... 117 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!