<script language="JavaScript">
<!--
var key = new Array();
key['1'] = "http://www.naver.com";
key['2'] = "http://www.google.com";
key['3'] = "http://www.daum.net";
function Key_up(presskey)
{
if ( (event.srcElement.tagName != 'input') && (event.srcElement.tagName != 'textarea') )
{
isNetscape=(document.layers);
eventkey = (isNetscape) ? presskey.which : event.keyCode;
which = String.fromCharCode(eventkey).toLowerCase();
for (var i in key)
if (which == i) window.location = key[i];
}
}
document.onkeypress = Key_up;
// -->
</script>
À§ÀÇ ¼Ò½º¸¦ ¿øÇϽô html ÆÄÀÏ¿¡ ³Ö¾î ³õÀ¸½Ã¸é ¼³Á¤µÈ Å° ÀԷ½Ã
¿øÇϽô ÆäÀÌÁö·Î À̵¿À» ÇÏ½Ç ¼ö ÀÖ½À´Ï´Ù.
key['1'] = "http://www.naver.com"; ¿¡¼ key °ª¿¡ ¿øÇϽô Ű¸¦ ÀÔ·ÂÇϽðí
À̵¿ÇÒ ÆäÀÌÁö¸¦ Àû¿ëÇÏ½Ã¸é µË´Ï´Ù.
if ( (event.srcElement.tagName != 'INPUT') && (event.srcElement.tagName != 'TEXTAREA') )
Á¶°Ç¹®¿¡¼ űװ¡ input À̰ųª textarea ÀÏ°æ¿ì¿¡´Â Àû¿ëÀÌ µÇÁö ¾Êµµ·Ï µÇ¾î ÀÖÀ¸¸ç
´Ù¸¥ Á¶°ÇÀ϶§¿¡µµ ¿¹¿Ü󸮸¦ ÇÏ½Ç ¼ö ÀÖ½À´Ï´Ù.
|