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

· 17년 전 · 2214

<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,224
17년 전 조회 3,162
17년 전 조회 2,323
17년 전 조회 3,745
17년 전 조회 3,169
17년 전 조회 5,494
17년 전 조회 2,648
17년 전 조회 1,853
17년 전 조회 1,928
17년 전 조회 1,761
17년 전 조회 1,701
17년 전 조회 2,760
17년 전 조회 1,883
17년 전 조회 1,565
17년 전 조회 2,062
17년 전 조회 1,124
17년 전 조회 1,657
17년 전 조회 2,868
17년 전 조회 2,113
17년 전 조회 1,807
17년 전 조회 2,022
17년 전 조회 1,316
17년 전 조회 1,706
17년 전 조회 1,211
17년 전 조회 1,767
17년 전 조회 1,787
17년 전 조회 1,037
17년 전 조회 3,138
17년 전 조회 4,311
17년 전 조회 2,457
17년 전 조회 7,460
17년 전 조회 3,821
17년 전 조회 4,154
17년 전 조회 2,416
17년 전 조회 2,880
17년 전 조회 3,624
17년 전 조회 3,995
17년 전 조회 3,156
17년 전 조회 3,141
17년 전 조회 3,287
17년 전 조회 2,459
17년 전 조회 2,052
17년 전 조회 3,101
17년 전 조회 3,245
17년 전 조회 4,607
17년 전 조회 1,582
17년 전 조회 2,613
17년 전 조회 2,685
17년 전 조회 1,897
17년 전 조회 2,215
17년 전 조회 1,829
17년 전 조회 2,364
17년 전 조회 3,770
17년 전 조회 3,880
17년 전 조회 2,080
17년 전 조회 1,357
17년 전 조회 1,494
17년 전 조회 1,637
17년 전 조회 1,618
17년 전 조회 1,381
17년 전 조회 1,523
17년 전 조회 1,342
17년 전 조회 1,829
17년 전 조회 2,736
17년 전 조회 1,836
17년 전 조회 1,386
17년 전 조회 1,673
17년 전 조회 2,321
17년 전 조회 1,943
17년 전 조회 1,259
17년 전 조회 5,893
17년 전 조회 3,277
17년 전 조회 3,176
17년 전 조회 2,593
17년 전 조회 2,772
17년 전 조회 2,722
17년 전 조회 3,225
17년 전 조회 2,353
17년 전 조회 2,467
17년 전 조회 2,531
17년 전 조회 2,521
17년 전 조회 2,658
17년 전 조회 3,186
17년 전 조회 2,691
17년 전 조회 1,427
17년 전 조회 2,844
17년 전 조회 1,588
17년 전 조회 1,339
17년 전 조회 2,010
17년 전 조회 1,459
17년 전 조회 1,396
17년 전 조회 1,338
17년 전 조회 1,554
17년 전 조회 2,048
17년 전 조회 1,430
17년 전 조회 1,403
17년 전 조회 1,207
17년 전 조회 1,433
17년 전 조회 1,169
17년 전 조회 1,300
🐛 버그신고