COMING SOON 🚀

트렌드나인

셀렉트 박스 이뿌게 꾸미기

<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,486
18년 전 조회 5,700
18년 전 조회 5,015
18년 전 조회 4,034
18년 전 조회 3,713
18년 전 조회 2,395
18년 전 조회 2,399
18년 전 조회 3,909
18년 전 조회 2,528
18년 전 조회 2,764
18년 전 조회 2,027
18년 전 조회 4,730
18년 전 조회 2,418
18년 전 조회 2,552
18년 전 조회 4,286
18년 전 조회 4,166
18년 전 조회 2,392
18년 전 조회 3,034
18년 전 조회 5,423
18년 전 조회 2,672
18년 전 조회 3,210
18년 전 조회 8,778
18년 전 조회 2,257
18년 전 조회 3,193
18년 전 조회 2,872
18년 전 조회 3,183
18년 전 조회 2,627
18년 전 조회 2,711
18년 전 조회 2,992
18년 전 조회 4,230
18년 전 조회 2,888
18년 전 조회 2,993
18년 전 조회 3,468
18년 전 조회 3,168
18년 전 조회 2,375
18년 전 조회 2,803
18년 전 조회 2,799
18년 전 조회 4,296
18년 전 조회 5,035
18년 전 조회 2,583
18년 전 조회 2,757
18년 전 조회 2,679
18년 전 조회 4,012
18년 전 조회 2,650
18년 전 조회 2,648
18년 전 조회 1,974
18년 전 조회 2,264
18년 전 조회 2,966
18년 전 조회 3,853
18년 전 조회 3,355
18년 전 조회 3,250
18년 전 조회 2,286
18년 전 조회 4,386
18년 전 조회 2,420
19년 전 조회 4,449
19년 전 조회 2,775
19년 전 조회 2,619
19년 전 조회 3,724
19년 전 조회 2,502
19년 전 조회 2,427
19년 전 조회 3,543
19년 전 조회 4,218
19년 전 조회 2,449
19년 전 조회 2,591
19년 전 조회 4,092
19년 전 조회 2,984
19년 전 조회 3,614
19년 전 조회 3,037
19년 전 조회 1,934
19년 전 조회 2,386
19년 전 조회 3,936
19년 전 조회 3,186
19년 전 조회 3,250
19년 전 조회 3,864
19년 전 조회 2,415
19년 전 조회 2,526
19년 전 조회 3,447
19년 전 조회 2,116
19년 전 조회 2,485
19년 전 조회 2,785
19년 전 조회 2,030
19년 전 조회 2,353
19년 전 조회 2,246
19년 전 조회 2,774
19년 전 조회 2,191
19년 전 조회 1,992
19년 전 조회 2,019
19년 전 조회 2,001
19년 전 조회 3,013
19년 전 조회 1,809
19년 전 조회 5,913
19년 전 조회 2,672
19년 전 조회 1,921
19년 전 조회 4,976
19년 전 조회 2,312
19년 전 조회 5,105
19년 전 조회 3,477
19년 전 조회 2,407
19년 전 조회 2,073
19년 전 조회 2,385