½ÃÀÛÆäÀÌÁö·Î Áñ°Üã±âÃß°¡
·Î±×ÀÎ
ȸ¿ø°¡ÀÔ l Ã⼮üũ l ¸¶ÀÌÆäÀÌÁö l CGIMALL
happycgi
ÀÚ·á½Ç »çÀÌÆ®µî·Ï ·©Å·100 ÇÁ·Î±×·¥¸®ºä °ü¸®ÀÚÃßõÀÚ·á Ãʺ¸°¡À̵å
Ä¿¹Â´ÏƼ
Àüü ÆîÃ帱â
Äü¸Þ´º¸µÅ© jquery , CSS , PHP , Javascript , ¹«·áÆùÆ® , ASP
»ó¼¼°Ë»ö
Ȩ > JAVASCRIPT > javascript ¼Ò½ºÃ¢°í > Æû °ü·Ã > Ã¼Å©¹Ú½ºÅ¬¸¯ ÇÏ´ÜŸÀÌƲǥ½Ã ½ºÅ©¸³Æ® »ó¼¼Á¤º¸
»çÀÌÆ®µî·Ï
Ŭ¶ó¿ìµåű×
Javascript
PHP
html
asp
mysql
CSS
Mobile
jquery
image
slide
�޴�
������Ʈ
¸Þ´º
ÇöÀçÁ¢¼ÓÀÚ ¸í »õ·Î°íħ
üũ¹Ú½ºÅ¬¸¯ ÇÏ´ÜŸÀÌƲǥ½Ã ½ºÅ©¸³Æ®
¼Ò½ºÅë°èÁ¤º¸ ¿À·ù½Å°í ¹× ¹®ÀÇ
ÇØÇÇÆÀ
³×ƼÁð
Æ®À§ÅÍ·Î º¸³»±â ÆäÀ̽ººÏÀ¸·Î º¸³»±â
¼Ò½ººÐ·ù Æû °ü·Ã
´Ù¿î·Îµå Ƚ¼ö 854 ȸ
°£´Ü¼³¸í üũ¹Ú½º¸¦ ¼±ÅÃÇϸé ÇÏ´ÜÀÇ ¸µÅ©¿¡ °É·ÁÀִ ŸÀÌƲº¯¼ö°¡ Ãâ·ÂÀÌ µË´Ï´Ù. À̸¦ ÀÌ¿ëÇÏ¿© »çÀÌÆ®¸¦ º¸´Ù µðÅ×ÀÏÇÏ°Ô ¸¸µé¼ö ÀÖ½À´Ï´Ù.
Æò°¡Çϱâ ÈǸ¢ÇÔ ¸Å¿ìÁÁÀ½ ÁÁÀ½ ±¦ÂúÀ½ º¸Åë º°·Î
ȨÆäÀÌÁö¹Ù·Î°¡±â ¼Ò½º´Ù¿î·Îµå µ¥¸ð ¹Ì¸®º¸±â ½ºÅ©·¦Çϱâ

<html>
<head>
    <title>ÇØÇÇCGI</title>
<script type="text/javascript">
<!--
// Adds DIV tags containing the ANCHORs' titles
function add_titles(cls)
{
    var as = document.getElementsByTagName('a');
    var i = 0;

    // Traverse all the ANCHOR tags
    while (i < as.length)
    {
        var a = as.item(i);
        i++;

        // Check if the tag's class is what we have to alter.
        if (a.className != cls)
        {
            continue;
        }

        // Check if the next DIV already contains the title
        if (a.nextSibling &&
            a.nextSibling.nodeName == 'DIV' &&
            a.nextSibling.firstChild &&
            a.nextSibling.firstChild.nodeName == '#text' &&
            a.nextSibling.firstChild.nodeValue == a.title)
        {
            continue;
        }


        var title = document.createElement("div");
        title.appendChild(document.createTextNode(a.title));

        a.parentNode.insertBefore(title, a.nextSibling);
    }
}

// Removes DIV tags containing the ANCHORs' titles
function remove_titles(cls)
{
    var as = document.getElementsByTagName('a');
    var i = 0;

    // Traverse all the ANCHOR tags
    while (i < as.length)
    {
        var a = as.item(i);
        i++;

        // Check if the tag's class is what we have to alter.
        if (a.className != cls)
        {
            continue;
        }

        // Remove the next DIV containing the anchor title
        if (a.nextSibling &&
            a.nextSibling.nodeName == 'DIV' &&
            a.nextSibling.firstChild &&
            a.nextSibling.firstChild.nodeName == '#text' &&
            a.nextSibling.firstChild.nodeValue == a.title)
        {
            a.parentNode.removeChild(a.nextSibling);
        }
    }
}

function toggle_titles()
{
    // !!!!  Change this to actual ANCHOR tag class  !!!!
    var anchorsClassName = 'test';

    var box =
        document.getElementById('toggle_titles_checkbox');

    if (box.checked)
        add_titles(anchorsClassName);
    else
        remove_titles(anchorsClassName);
}

// Handle the old user agents - no checkbox
// will appear if the user agent doesn't support DOM2.
if (document.getElementsByTagName)
{
    document.write(
        '<input id="toggle_titles_checkbox" type="checkbox" ' +
        'onclick="toggle_titles()">¸µÅ© ¼³¸íÀ» º¸¿©ÁÖ¼¼¿ä.<br>');

    if (window.addEventListener)
        window.addEventListener("load", toggle_titles, false);
    else if (window.addEvent)
        window.addEvent("load", toggle_titles);
}
//-->
</script>

</head>
<body>


<a href="http://www.naver.com" class="test" title="Ŭ¸¯ÇÏ¸é ³×À̹ö·Î °¡¿ä..">³×À̹ö</a><br>
<a href="http://www.daum.net" class="test" title="Ŭ¸¯ÇÏ¸é ´ÙÀ½À¸·Î °¡¿ä..">DAUM</a><br>
<a href="http://www.happycgi.com" class="test" title="Ŭ¸¯Çϸé ÇØÇÇCGI·Î °¡¿ä..">HAPPYCGI</a><br>
<a href="http://www.cgimall.co.kr" class="test" title="Ŭ¸¯Çϸé CGI¸ô·Î °¡¿ä..">CGIMALL</a><br>

</body>
</html>


³×ƼÁð ÀÇ°ß   ÀÌ¿ëÇϽŠÀÚ·áÀÇ Èı⸦ ÀÚÀ¯·Ó°Ô ÀÛ¼ºÇϼ¼¿ä. (»ó¾÷ÀûÀÎ ±¤°í ¹× µµ¹è¼º ±Û µîÀº »çÀüÅ뺸¾øÀÌ »èÁ¦µÉ ¼ö ÀÖ½À´Ï´Ù.)
³»¿ë ¾ÆÀ̵ð ÀÇ°ß³²±â±â
µî·ÏµÈ ÀÇ°ßÀÌ ¾ø½À´Ï´Ù.
1
À̸§
³»¿ë
:³×¸Â¾Æ¿ä: :È­³ª´Â±º¿ä: :Àá¿Í: :¿ì¿ïÇØ: :À̰ǾƳÄ: :¿ÕÇÏÇÏ: ¿Õ¿ôÀ½~ ³î·¥~
Æò°¡Çϱâ ÈǸ¢ÇÔ ¸Å¿ìÁÁÀ½ ÁÁÀ½ ±¦ÂúÀ½ º¸Åë º°·Î
µµ¹è¹æÁöÅ°
 59619655 º¸ÀÌ´Â µµ¹è¹æÁöÅ°¸¦ ÀÔ·ÂÇϼ¼¿ä.