- µ¥¸ð¸¦ ¿¾î º¸½Ã¸é ¾ÆÀ̵ð¿Í Æнº¿öµå¸¦ ÀÔ·ÂÇÏ´Â ÆûÀÌ ³ªÅ¸³³´Ï´Ù.
- µÚ¿¡ ÀÖ´Â help? ºÎºÐÀ» Ŭ¸¯ÇÏ¸é ¾ÆÀ̵ðã±â, ºñ¹Ð¹øȣã±âµîÀÌ Æ˾÷À¸·Î ³ªÅ¸³³´Ï´Ù.
¾Æ·¡´Â º» ¿¹Á¦ÀÇ ÀÚ¹Ù½ºÅ©¸³Æ® ¿ø¹®ÀÔ´Ï´Ù.
<html> <head> <title>ÇØÇÇCGI</title>
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin function explain(name, output, msg) { newwin = window.open('','','top=150,left=150,width=325,height=300'); if (!newwin.opener) newwin.opener = self; with (newwin.document) { open(); write('<html>'); write('<body bgcolor=e0ffff onLoad="document.form.box.focus()"><form name=form>' + msg + '<br>'); write('<p>' + name + ' ¸¦ ÀÔ·ÂÇϼ¼¿ä.'); write('<p><center>' + name + ': <input type=text name=box size=10 onKeyUp=' + output + '=this.value>'); write('<p><input type=button value="Click to close when finished" onClick=window.close()>'); write('</center></form></body></html>'); close(); } } // End --> </script> </head> <body>
<form name=form method=post action="#"> ¾ÆÀ̵ð : <input type=text name="username" size=10> <a href="javascript:explain('¾ÆÀ̵ð', 'opener.document.form.username.value', '¾ÆÀ̵𰡠¹ºÁö ¸ô¶ó¼ ÇïÇÁ¸¦ ´©¸£´Ù´Ï...¿ä..');" onMouseOver="window.status='Click for explanation...';return true;" onMouseOut="window.status='';return true;">Help?</a><br> Æнº¿öµå : <input type=text name="password" size=10> <a href="javascript:explain('Æнº¿öµå', 'opener.document.form.password.value', 'Æнº¿öµå¶õ ºñ¹Ð¹øÈ£¸¦ ¸»Çϴ°ſ¡¿ä..');" onMouseOver="window.status='Click for explanation...';return true;" onMouseOut="window.status='';return true;">Help?</a></form>
</body> </html>
|