-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathjquery-placeholder.js
60 lines (58 loc) · 2.42 KB
/
jquery-placeholder.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
$.fn.fixPlaceholder = (function( $ ){
if( !( 'placeholder' in document.createElement( 'input' ) ) ){
return function( options ){
var configs = {
fontSize: '12px',
color: 'gray',
marginLeft: '3px',
fontWeight: 'normal',
top: '0px',
left: '0px',
visibility: 'visible',
cursor: 'text'
};
$.extend( configs, options || {} );
$( this ).each( function(){
var $this = $( this ),
placeholder = $this.attr( 'placeholder' ),
idStr = $this.attr( 'id' ),
label,b,z;
if( placeholder ){
if( !idStr ){
idStr = 'fixPlaceholder' + Math.random();
}
$this.attr( 'id', idStr );
label = $( '<label for="'+ idStr +'" style="position:absolute;visibility:hidden;"></label>');
if( $this.val() === '' ){
label.html( placeholder );
}
$this.before( label );
//用于设置label的位置
configs['top'] = $this.offset().top + 'px';
configs['left'] = $this.offset().left + 'px';
//用于让label中的文本在input里上下居中
b = parseInt( $this.css( 'borderTopWidth' ) );
configs['lineHeight'] = $this.height() + (b+1)*2 + 'px';
//用于当input被定位时,label能居于input之上
z = $this.css( 'zIndex' );
configs['zIndex'] = z === 'auto' ? 1 : z + 1 ;
label.css( configs );
//绑定事件
$this.bind({
focus: function(){
label.html( '' );
},
blur: function(){
if( $this.val() === '' ){
label.html( placeholder );
}
}
})
}
})
return $;
}
}else{
return $;
}
})( $ );