셀렉트 박스 내용을 레이어로 표현

· 17년 전 · 2226

<HTML>
<HEAD>
    <TITLE>http://www.blueb.co.kr</TITLE>
<script>

//SELECT -> LAYER변환
function getSelectToLayer(obj,lwidth,href)
{
    if(navigator.userAgent.indexOf('Opera') != -1 || navigator.userAgent.indexOf('MSIE') == -1) { return false; }

    obj.style.display = 'none';
    var newsb = obj.id + "_sbj";
    var newid = obj.id + "_tmp";
    var newim = obj.id + "_img";
    var LayerTag = "";

    LayerTag += "<TABLE WIDTH='"+lwidth+"' CELLSPACING=0 CELLPADDING=0 STYLE='position:absolute;cursor:default;'>";
    LayerTag += "<TR HEIGHT=1><TD></TD></TR><TR><TD>";
    LayerTag += "<TABLE BGCOLOR='#FFFFFF' HEIGHT=15 WIDTH=100% CELLSPACING=1 CELLPADDING=0 STYLE='border:1 solid #C0C0C0;line-height:117%;' onmouseover=\"getSelectLayerOver(this,document.getElementById('"+newim+"'),document.getElementById('"+newid+"'));\" onmouseout=\"getSelectLayerOut(this,document.getElementById('"+newim+"'),document.getElementById('"+newid+"'));\">";
   
    LayerTag += "<TR WIDTH=100% onclick=\"getSelectSubLayer(document.getElementById('"+newid+"'),document.getElementById('"+newsb+"'));\">";
    LayerTag += "<TD ID='"+newsb+"' WIDTH=95% onblur='getSelectLayerBlur(this);'>&nbsp;" + obj.options[obj.selectedIndex].text + "</TD>";
    LayerTag += "<TD ALIGN=RIGHT><IMG ID='"+newim+"' SRC='http://www.blueb.co.kr/image/ico/dot_select.gif' ALIGN=absmiddle STYLE='filter:gray();'></TD></TR>";
   
    LayerTag += "</TABLE>";

    LayerTag += "<TABLE onblur='getSubLayerClose(this);' ID='"+newid+"' WIDTH=100% CELLSPACING=0 CELLPADDING=0 STYLE='display:none;border:1 solid #C0C0C0;' BGCOLOR='#FFFFFF'>";
    for (var i = 0 ; i < obj.length; i++)
    {
        LayerTag += "<TR onmouseover='getSelectMoveLayer(this);' onmouseout='getSelectMoveLayer1(this);' onclick=\"getSelectChangeLayer(document.getElementById('"+obj.id+"'),document.getElementById('"+newid+"'),document.getElementById('"+newsb+"'),'"+obj.options[i].text+"','"+obj.options[i].value+"','"+href+"');\" ";

        if (obj.value == obj.options[i].value)
        {
            LayerTag += "STYLE='background:#225588;color:#FFFFFF;'><TD>&nbsp;";
        }
        else {
            LayerTag += "STYLE='background:#FFFFFF;color:#000000;'><TD>&nbsp;";
        }

        LayerTag += obj.options[i].text;
        LayerTag += "</TD></TR>";
    }
    LayerTag += "</TABLE>";
    LayerTag += "</TD></TR></TABLE><IMG SRC='' WIDTH='"+lwidth+"' HEIGHT=0>";

    document.write(LayerTag);
}

//서브레이어보이기
function getSelectSubLayer(obj,sobj)
{
    if(obj.style.display == 'none')
    {
        sobj.style.background = '#FFFFFF';
        sobj.style.color = '#000000';   
        obj.style.display = 'block';
        NowSelectedLayer = obj;
        obj.focus();
    }
    else {
        sobj.style.background = '#225588';
        sobj.style.color = '#FFFFFF';
        obj.style.display = 'none';
    }
}

//서브레이어체크
function getSelectSubLayer1(obj)
{
    if(obj.style.display != 'none')
    {
        obj.style.display = 'none';
    }
}

//타이틀레이어 MouseOver
function getSelectLayerOver(obj,img,nobj)
{
    if (nobj.style.display == 'none')
    {
        obj.style.border = '1 solid #225588';
        img.style.filter = '';
    }
}

//타이틀레이어 MouseOut
function getSelectLayerOut(obj,img)
{
    obj.style.border = '1 solid #C0C0C0';
    img.style.filter = 'gray()';
}


//서브레이어 MouseOver
function getSelectMoveLayer(obj)
{
    if (obj.style.color == '#000000')
    {
        obj.style.background = '#225588';
        obj.style.color = '#FFFFFF';
    }
}
//서브레이어 MouseOut
function getSelectMoveLayer1(obj)
{
    obj.style.background = '#FFFFFF';
    obj.style.color = '#000000';
}

//새레이어선택
function getSelectChangeLayer(obj,fobj,sobj,text,value,href)
{
    if (href)
    {
        eval("document.DataForm." + href).value = value;
        location.href = getThisUrl();
        return false;
    }
    else {
        fobj.style.display = 'none';
        sobj.innerHTML = '&nbsp;' + text;
        sobj.style.background = '#225588';
        sobj.style.color = '#FFFFFF';
        sobj.focus();
        obj.value = value;
    }
}

//타이틀레이어 blur
function getSelectLayerBlur(obj)
{
    obj.style.background = '#FFFFFF';
    obj.style.color = '#000000';
}

//서브레이어 닫기
function getSubLayerClose(obj)
{
    if (obj.style.display != 'none')
    {
        setTimeout("document.getElementById('" + obj.id + "').style.display = 'none';" , 150);
    }
}


</script>
</HEAD>

<BODY>
<SELECT ID='search_where'>
<OPTION VALUE="ALL">전체에서</OPTION>
<OPTION VALUE="BB_SUBJECT">제목</OPTION>
<OPTION VALUE="BB_Source">Source</OPTION>
<OPTION VALUE="BB_CONTENT">본문</OPTION>
<script language=javascript>getSelectToLayer(document.getElementById('search_where'),80,''); //검색영역select->layer변환</script>

</SELECT>
</BODY>
</HTML>

[이 게시물은 관리자님에 의해 2011-10-31 17:16:08 PHP & HTML에서 이동 됨]
|
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

+
제목 글쓴이 날짜 조회
17년 전 조회 3,238
17년 전 조회 3,177
17년 전 조회 2,335
17년 전 조회 3,760
17년 전 조회 3,183
17년 전 조회 5,510
17년 전 조회 2,662
17년 전 조회 1,867
17년 전 조회 1,942
17년 전 조회 1,778
17년 전 조회 1,719
17년 전 조회 2,774
17년 전 조회 1,898
17년 전 조회 1,577
17년 전 조회 2,070
17년 전 조회 1,136
17년 전 조회 1,671
17년 전 조회 2,885
17년 전 조회 2,129
17년 전 조회 1,819
17년 전 조회 2,036
17년 전 조회 1,334
17년 전 조회 1,717
17년 전 조회 1,229
17년 전 조회 1,780
17년 전 조회 1,797
17년 전 조회 1,050
17년 전 조회 3,152
17년 전 조회 4,323
17년 전 조회 2,471
17년 전 조회 7,477
17년 전 조회 3,834
17년 전 조회 4,169
17년 전 조회 2,428
17년 전 조회 2,895
17년 전 조회 3,637
17년 전 조회 4,009
17년 전 조회 3,165
17년 전 조회 3,153
17년 전 조회 3,300
17년 전 조회 2,470
17년 전 조회 2,069
17년 전 조회 3,116
17년 전 조회 3,256
17년 전 조회 4,619
17년 전 조회 1,595
17년 전 조회 2,627
17년 전 조회 2,701
17년 전 조회 1,912
17년 전 조회 2,227
17년 전 조회 1,841
17년 전 조회 2,379
17년 전 조회 3,783
17년 전 조회 3,900
17년 전 조회 2,094
17년 전 조회 1,366
17년 전 조회 1,508
17년 전 조회 1,649
17년 전 조회 1,630
17년 전 조회 1,390
17년 전 조회 1,537
17년 전 조회 1,353
17년 전 조회 1,839
17년 전 조회 2,752
17년 전 조회 1,850
17년 전 조회 1,400
17년 전 조회 1,689
17년 전 조회 2,334
17년 전 조회 1,958
17년 전 조회 1,270
17년 전 조회 5,910
17년 전 조회 3,295
17년 전 조회 3,188
17년 전 조회 2,607
17년 전 조회 2,786
17년 전 조회 2,735
17년 전 조회 3,239
17년 전 조회 2,367
17년 전 조회 2,481
17년 전 조회 2,542
17년 전 조회 2,533
17년 전 조회 2,672
17년 전 조회 3,204
17년 전 조회 2,708
17년 전 조회 1,438
17년 전 조회 2,859
17년 전 조회 1,605
17년 전 조회 1,351
17년 전 조회 2,021
17년 전 조회 1,474
17년 전 조회 1,412
17년 전 조회 1,347
17년 전 조회 1,563
17년 전 조회 2,063
17년 전 조회 1,445
17년 전 조회 1,415
17년 전 조회 1,221
17년 전 조회 1,448
17년 전 조회 1,183
17년 전 조회 1,314
🐛 버그신고