- 이동하지 않는 링크
- 日常茶飯事
- 2009. 6. 11. 14:14
어떤 WAS 메뉴얼에서 링크를 클릭해도 이동이 안됨
- this.parent.frames('tableFrame').location.href 를 this.parent.frames.mainFrame.location.href 으로 변경하면 된다.
<html><head> <meta http-equiv="content-type" content="text/html; charset=EUC-KR"> <link rel="stylesheet" type="text/css" href="top_data/edocs.css"> <script language="javascript"> function openDoc(docDir) { this.parent.frames('mainFrame').location.href = docDir + '/' + docDir + '-0001.htm'; this.parent.frames('tableFrame').location.href = docDir + '/index.htm'; } document.writeln("<HTML>"); document.writeln(" <HEAD>"); document.writeln(" <TITLE>Overview</TITLE>"); document.writeln(" </HEAD>"); document.writeln(" <BODY style=\"margin:12px 0px 0px 12px;\">"); document.writeln(" <TABLE width=\"100%\" height=\"100%\" border=\"0\" cellpadding=\"1\" cellspacing=\"1\" style=\"border-collapse:collapse;\">"); document.writeln(" <TR valign='top'>"); document.writeln(" <TD class='list'><a href=javascript:openDoc('release');>XXX 5.0 릴리즈 노트</a></TD>"); document.writeln(" </TR>");
- this.parent.frames('tableFrame').location.href 를 this.parent.frames.mainFrame.location.href 으로 변경하면 된다.
Recent comment