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
| $(function(){
|
| //
| $('.form_text_ipt input').focus(function(){
| $(this).parent().css({
| 'box-shadow':'0 0 3px #bbb',
| });
| });
| $('.form_text_ipt input').blur(function(){
| $(this).parent().css({
| 'box-shadow':'none',
| });
| //$(this).parent().next().hide();
| });
|
| //
| $('.form_text_ipt input').bind('input propertychange',function(){
| if($(this).val()==""){
| $(this).css({
| 'color':'red',
| });
| $(this).parent().css({
| 'border':'solid 1px red',
| });
| //$(this).parent().next().find('span').html('helow');
| $(this).parent().next().show();
| }else{
| $(this).css({
| 'color':'#ccc',
| });
| $(this).parent().css({
| 'border':'solid 1px #ccc',
| });
| $(this).parent().next().hide();
| }
| });
| });
|
|