트렌드나인

셀렉트 박스 이뿌게 꾸미기

<script>
//insert_select(저장변수명,가로,폰트크기,보드색,배경색,선택색,화살표이미지);
//insert_select_option(저장변수명,폰트크기,보드색,배경색,선택색,value,view_value);

//기본셀릭트만들기
insert_select("test","100","8","F6D8B0","FFFFFF","F6D8B0","./images/menu_02/btn_select.gif");

//셀렉트 옵션추가
insert_select_option("test","8","F6D8B0","FFFFFF","F6D8B0","1","1");
insert_select_option("test","8","F6D8B0","FFFFFF","F6D8B0","2","2");
insert_select_option("test","8","F6D8B0","FFFFFF","F6D8B0","3","3","Y");
</script>

================================= js부분
//처리부분 js로 저장해서 사용하세요..^^
var zindex = 10000;

function insert_select ( sn,w,f,b,g,c,img) {
  select_count = new Array();
  select_count[sn] = 0;
  zindex--;
  document.write("    <div >");
  document.write("    <table border='0' cellspacing='1' cellpadding='1' width='"+w+"'  style='table-layout:fixed;width:"+w+";' bgcolor='"+b+"' onclick='select_click(\""+sn+"\");' >");

  document.write("    <tr>");
  document.write("        <td bgcolor='"+g+"'>");
  document.write("            <input type='text' id='"+sn+"' name='"+sn+"' style='border:none;cursor:hand;width:100%;font-size:"+f+"pt;' onselectstart=\"return false\" readonly> ");

  document.write("        </td>");
  if(img != "") {
      document.write("    <td width=18 bgcolor='"+g+"' align=center valign=bottom style='cursor:hand'><img src='"+img+"'></td>");        
  } else {
      document.write("    <td width=18 bgcolor='"+g+"' align=center valign=bottom style='cursor:hand'>v</td>");
  }
  document.write("    </tr>");
  document.write("    </table>");
  document.write("    </div>");
  document.write("<div id='"+sn+"_select_div' name='"+sn+"_select_div'  style='display:none;z-index:"+zindex+";position:absolute;'  onmouseover='"+sn+"_select_div.style.display=\"\";' onmouseout='"+sn+"_select_div.style.display=\"none\";'>");
 
  document.write("        <table border='0' cellspacing='1' cellpadding='1' bgcolor='"+b+"' width="+w+" onmouseover='"+sn+"_select_div.style.display=\"\";'>");
 
  document.write("        <tr><td bgcolor='"+g+"' style='line-height:1.3em;' id='"+sn+"_select_span'></td></tr>");
 
  document.write("        </table>");
  document.write("    </div>");
}

function insert_select_option(sn,f,b,g,c,v,vv,chk)     {
  select_count[sn] ++;    
  option_html = "<span style='width:100%;font-size:"+f+"pt' onclick='"+sn+".value=\""+v+"\";"+sn+"_select_div.style.display=\"none\";' onmouseover='this.style.background=\""+c+"\"' onmouseout='this.style.background=\""+g+"\"'>"+vv+"/"+select_count[sn] +"</span><br>";

  if(select_count[sn] == 1 || chk == "Y" ) {
      document.getElementById( sn ).value = v
  }
  document.getElementById( sn+"_select_span").innerHTML += option_html;
}

function  select_click(sn)     {    
  if ( document.getElementById( sn+"_select_div").style.display == "none") {
      document.getElementById( sn+"_select_div").style.display = "";
  } else {
      document.getElementById( sn+"_select_div").style.display = "none";
  }
}
[이 게시물은 관리자님에 의해 2011-10-31 16:57:14 JavaScript에서 이동 됨]
|
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

+
제목 글쓴이 날짜 조회
18년 전 조회 2,417
18년 전 조회 5,612
18년 전 조회 4,933
18년 전 조회 3,943
18년 전 조회 3,657
18년 전 조회 2,323
18년 전 조회 2,322
18년 전 조회 3,830
18년 전 조회 2,454
18년 전 조회 2,680
18년 전 조회 1,950
18년 전 조회 4,655
18년 전 조회 2,351
18년 전 조회 2,480
18년 전 조회 4,227
18년 전 조회 4,089
18년 전 조회 2,319
18년 전 조회 2,955
18년 전 조회 5,337
18년 전 조회 2,593
18년 전 조회 3,151
18년 전 조회 8,704
18년 전 조회 2,183
18년 전 조회 3,110
18년 전 조회 2,787
18년 전 조회 3,123
18년 전 조회 2,543
18년 전 조회 2,638
18년 전 조회 2,924
18년 전 조회 4,167
18년 전 조회 2,825
18년 전 조회 2,927
18년 전 조회 3,387
18년 전 조회 3,108
18년 전 조회 2,293
18년 전 조회 2,738
18년 전 조회 2,731
18년 전 조회 4,217
18년 전 조회 4,959
18년 전 조회 2,508
18년 전 조회 2,669
18년 전 조회 2,605
18년 전 조회 3,947
18년 전 조회 2,561
18년 전 조회 2,575
18년 전 조회 1,900
18년 전 조회 2,189
18년 전 조회 2,907
18년 전 조회 3,787
18년 전 조회 3,276
18년 전 조회 3,160
18년 전 조회 2,216
18년 전 조회 4,318
18년 전 조회 2,344
18년 전 조회 4,376
18년 전 조회 2,703
18년 전 조회 2,531
18년 전 조회 3,649
18년 전 조회 2,426
18년 전 조회 2,364
18년 전 조회 3,465
18년 전 조회 4,146
18년 전 조회 2,380
18년 전 조회 2,527
18년 전 조회 4,023
18년 전 조회 2,911
18년 전 조회 3,532
18년 전 조회 2,964
18년 전 조회 1,858
18년 전 조회 2,313
18년 전 조회 3,863
18년 전 조회 3,106
18년 전 조회 3,179
18년 전 조회 3,786
18년 전 조회 2,344
18년 전 조회 2,463
18년 전 조회 3,365
18년 전 조회 2,048
19년 전 조회 2,414
19년 전 조회 2,716
19년 전 조회 1,958
19년 전 조회 2,292
19년 전 조회 2,179
19년 전 조회 2,702
19년 전 조회 2,122
19년 전 조회 1,930
19년 전 조회 1,947
19년 전 조회 1,931
19년 전 조회 2,945
19년 전 조회 1,743
19년 전 조회 5,843
19년 전 조회 2,588
19년 전 조회 1,843
19년 전 조회 4,890
19년 전 조회 2,235
19년 전 조회 5,023
19년 전 조회 3,391
19년 전 조회 2,319
19년 전 조회 2,008
19년 전 조회 2,297