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에서 이동 됨]
|
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

태그 필터 (최대 3개) 전체 개발자 소스 기타 mysql 팁자료실 javascript php linux flash 정규표현식 jquery node.js mobile 웹서버 os 프로그램 강좌 썸네일 이미지관련 도로명주소 그누보드5 기획자 견적서 계약서 기획서 마케팅 제안서 seo 통계 서식 통계자료 퍼블리셔 html css 반응형 웹접근성 퍼블리싱 표준화 반응형웹 홈페이지기초 부트스트랩 angularjs 포럼 스크린리더 센스리더 개발자톡 개발자팁 퍼블리셔톡 퍼블리셔팁 기획자톡 기획자팁 프로그램강좌 퍼블리싱강좌
+
제목 글쓴이 날짜 조회
18년 전 조회 2,491
18년 전 조회 5,704
18년 전 조회 5,025
18년 전 조회 4,041
18년 전 조회 3,718
18년 전 조회 2,398
18년 전 조회 2,405
18년 전 조회 3,913
18년 전 조회 2,531
18년 전 조회 2,769
18년 전 조회 2,029
18년 전 조회 4,732
18년 전 조회 2,428
18년 전 조회 2,563
18년 전 조회 4,294
18년 전 조회 4,169
18년 전 조회 2,401
18년 전 조회 3,043
18년 전 조회 5,430
18년 전 조회 2,679
18년 전 조회 3,218
18년 전 조회 8,783
18년 전 조회 2,261
18년 전 조회 3,198
18년 전 조회 2,878
18년 전 조회 3,190
18년 전 조회 2,629
18년 전 조회 2,715
18년 전 조회 2,998
18년 전 조회 4,239
18년 전 조회 2,899
18년 전 조회 2,996
18년 전 조회 3,472
18년 전 조회 3,180
18년 전 조회 2,378
18년 전 조회 2,808
18년 전 조회 2,806
18년 전 조회 4,302
18년 전 조회 5,040
18년 전 조회 2,588
18년 전 조회 2,763
18년 전 조회 2,687
18년 전 조회 4,014
18년 전 조회 2,658
18년 전 조회 2,650
18년 전 조회 1,978
18년 전 조회 2,271
18년 전 조회 2,975
18년 전 조회 3,862
18년 전 조회 3,364
18년 전 조회 3,252
18년 전 조회 2,292
18년 전 조회 4,393
18년 전 조회 2,430
19년 전 조회 4,453
19년 전 조회 2,777
19년 전 조회 2,625
19년 전 조회 3,737
19년 전 조회 2,505
19년 전 조회 2,435
19년 전 조회 3,545
19년 전 조회 4,225
19년 전 조회 2,461
19년 전 조회 2,598
19년 전 조회 4,097
19년 전 조회 2,989
19년 전 조회 3,620
19년 전 조회 3,040
19년 전 조회 1,938
19년 전 조회 2,392
19년 전 조회 3,947
19년 전 조회 3,194
19년 전 조회 3,254
19년 전 조회 3,872
19년 전 조회 2,419
19년 전 조회 2,534
19년 전 조회 3,451
19년 전 조회 2,122
19년 전 조회 2,493
19년 전 조회 2,794
19년 전 조회 2,034
19년 전 조회 2,365
19년 전 조회 2,257
19년 전 조회 2,778
19년 전 조회 2,199
19년 전 조회 1,999
19년 전 조회 2,024
19년 전 조회 2,009
19년 전 조회 3,024
19년 전 조회 1,816
19년 전 조회 5,925
19년 전 조회 2,680
19년 전 조회 1,928
19년 전 조회 4,985
19년 전 조회 2,320
19년 전 조회 5,109
19년 전 조회 3,482
19년 전 조회 2,414
19년 전 조회 2,083
19년 전 조회 2,392