묻고답하기

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml2/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">

<head>

<script type="text/javascript" src="</script '>http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>

<script type="text/javascript" src="ddaccordion.js">

/***********************************************
* Accordion Content script- (c) Dynamic Drive DHTML code library (www.dynamicdrive.com)
* Visit http://www.dynamicDrive.com for hundreds of DHTML scripts
* This notice must stay intact for legal use
***********************************************/

</script>


<script type="text/javascript">


ddaccordion.init({
 headerclass: "expandable", //Shared CSS class name of headers group that are expandable
 contentclass: "categoryitems", //Shared CSS class name of contents group
 revealtype: "click", //Reveal content when user clicks or onmouseover the header? Valid value: "click", "clickgo", or "mouseover"
 mouseoverdelay: 200, //if revealtype="mouseover", set delay in milliseconds before header expands onMouseover
 collapseprev: true, //Collapse previous content (so only one open at any time)? true/false
 defaultexpanded: [0], //index of content(s) open by default [index1, index2, etc]. [] denotes no content
 onemustopen: false, //Specify whether at least one header should be open always (so never all headers closed)
 animatedefault: false, //Should contents open by default be animated into view?
 persiststate: true, //persist state of opened contents within browser session?
 toggleclass: ["", "openheader"], //Two CSS classes to be applied to the header when it's collapsed and expanded, respectively ["class1", "class2"]
 togglehtml: ["prefix", "", ""], //Additional HTML added to the header when it's collapsed and expanded, respectively  ["position", "html1", "html2"] (see docs)
 animatespeed: "fast", //speed of animation: integer in milliseconds (ie: 200), or keywords "fast", "normal", or "slow"
 oninit:function(headers, expandedindices){ //custom code to run when headers have initalized
  //do nothing
 },
 onopenclose:function(header, index, state, isuseractivated){ //custom code to run whenever a header is opened or closed
  //do nothing
 }
})


</script>

<style type="text/css">

.arrowlistmenu{
width: 180px; /*width of accordion menu*/
}

.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
font: bold 14px Arial;
color: white;
background: black url(titlebar.png) repeat-x center left;
margin-bottom: 10px; /*bottom spacing between header and rest of content*/
text-transform: uppercase;
padding: 4px 0 4px 10px; /*header text is indented 10px*/
cursor: hand;
cursor: pointer;
}

.arrowlistmenu .openheader{ /*CSS class to apply to expandable header when it's expanded*/
background-image: url(titlebar-active.png);
}

.arrowlistmenu ul{ /*CSS for UL of each sub menu*/
list-style-type: none;
margin: 0;
padding: 0;
margin-bottom: 8px; /*bottom spacing between each UL and rest of content*/
}

.arrowlistmenu ul li{
padding-bottom: 2px; /*bottom spacing between menu items*/
}

.arrowlistmenu ul li a{
color: #A70303;
background: url(arrowbullet.png) no-repeat center left; /*custom bullet list image*/
display: block;
padding: 2px 0;
padding-left: 19px; /*link text is indented 19px*/
text-decoration: none;
font-weight: bold;
border-bottom: 1px solid #dadada;
font-size: 90%;
}

.arrowlistmenu ul li a:visited{
color: #A70303;
}

.arrowlistmenu ul li a:hover{ /*hover state CSS*/
color: #A70303;
background-color: #F3F3F3;
}

</style>

</head>

<body>

<div class="arrowlistmenu">

<h3 class="menuheader expandable">CSS Library</h3>
<ul class="categoryitems">
<li><a href="Horizontal'>http://www.dynamicdrive.com/style/csslibrary/category/C1/">Horizontal CSS Menus</a></li>
<li><a href="Vertical'>http://www.dynamicdrive.com/style/csslibrary/category/C2/">Vertical CSS Menus</a></li>
<li><a href="Image'>http://www.dynamicdrive.com/style/csslibrary/category/C4/">Image CSS</a></li>
<li><a href="Form'>http://www.dynamicdrive.com/style/csslibrary/category/C6/">Form CSS</a></li>
<li><a href="DIVs'>http://www.dynamicdrive.com/style/csslibrary/category/C5/">DIVs and containers</a></li>
<li><a href="Links'>http://www.dynamicdrive.com/style/csslibrary/category/C7/">Links & Buttons</a></li>
<li><a href="Otherhttp://www.dynamicdrive.com/style/csslibrary/category/C8/">Other</a></li>
<li><a href="Browse'>http://www.dynamicdrive.com/style/csslibrary/all/">Browse All</a></li>
</ul>

<h3 class="menuheader expandable">CSS Drive</h3>
<ul class="categoryitems">
<li><a href="CSS'>http://www.cssdrive.com">CSS Gallery</a></li>
<li><a href="Menu'>http://www.cssdrive.com/index.php/menudesigns/">Menu Gallery</a></li>
<li><a href="Web'>http://www.cssdrive.com/index.php/news/">Web Design News</a></li>
<li><a href="CSS'>http://www.cssdrive.com/index.php/examples/">CSS Examples</a></li>
<li><a href="CSS'>http://www.cssdrive.com/index.php/main/csscompressor/">CSS Compressor</a></li>
<li><a href="CSS'>http://www.dynamicdrive.com/forums/forumdisplay.php?f=6">CSS Forums</a></li>
</ul>

<h3 class="menuheader expandable">JavaScript Kit</h3>
<ul class="categoryitems">
<li><a href="http://www.javascriptkit.com/cutpastejava.shtml" >Free JavaScripts</a></li>
<li><a href="JavaScript'>http://www.javascriptkit.com/javatutors/">JavaScript tutorials</a></li>
<li><a href="JavaScript'>http://www.javascriptkit.com/jsref/">JavaScript Reference</a></li>
<li><a href="DOM'>http://www.javascriptkit.com/domref/">DOM Reference</a></li>
<li><a href="DHTML'>http://www.javascriptkit.com/dhtmltutors/">DHTML & CSS</a></li>
</ul>

<h3 class="menuheader" style="cursor: default">FeedBack</h3>
<div>
Regular contents here. Header does not expand or contact.
</div>

</div>

<p>Assuming the current page is named "current.htm", the below links when navigated to expands a particular header on that page:</p>
<p>
- <a href="current.htm?expandable=0">Expand 1st header within "expandable" header group</a><br />
- <a href="current.htm?expandable=2">Expand 3rd header within "expandable" header group</a><br />
</p>

<p>Helpful links: </p>
<p>
- <a href="Adding'>http://www.dynamicdrive.com/dynamicindex17/ddaccordion_suppliment.htm">Adding arbitrary links hat expand/ collapse the contents</a><br />
- <a href="Taking'>http://www.dynamicdrive.com/dynamicindex17/ddaccordion_suppliment2.htm">Taking advantage of the oninit() and onopenclose() event handlers</a><br />
</p>

</body>
</html>





위 소스를 제 홈피 서브 메뉴에 적용시킽텨고 하는데 ....적용은됩니다.. 그런데 " 작업을 마쳤으나  페이지에 오류가 있습니다." 이렇게뜨네요. 뭐가 문제인지 수정좀 부탁드립니다. 태그생성기에 넣고 결과보기후 뜨는 메세지 아래에 첨부 합니다. 부탁드릴게요

0.jpg
글쓴이 제목 최종 글
XE 공지 글 쓰기,삭제 운영방식 변경 공지 [16] 2019.03.05 by 남기남
만쓰별(정만) 아이프레임 리사이징에 대해 조언좀여... [6] 2009.01.31 by 만쓰별(정만)
자이제로 게시판의 글쓰기 권한에 대해서.....?? [1] file 2009.01.31 by 중고아트
이에 홈페이지 자랑 란에 관해서//  
왜만지냐 xe관련은 아니고 자바스크립트 문의입니다. 도왖주세요 [4] 2009.01.31 by 왜만지냐
사슴483 메뉴 설정이 어디에 저장이 되는거죠? [3] 2009.01.31 by 백성찬
팩토리 DB 체인지 [1] 2009.01.31 by 백성찬
ksadonis 플래쉬메뉴.ㅜㅜ [3] 2009.01.31 by yjnet
hammers 게시판 글은 어떤 DB안에 들어가있나요? [2] 2009.01.31 by hammers
사슴483 메뉴 를 실수로 삭제하면... [2] 2009.01.31 by Habile
hammers 회원가입 시 집주소,우편번호등등을 추가하고 싶습니다. [2] 2009.01.31 by hammers
인서스 마이그레이션 프로그램 안 만드나요? [3] 2009.01.31 by Habile
사슴483 홈 이라는 페이지를 만들고요 php 코드를 넣고 싶은데.. [1] 2009.01.31 by Habile
톱아보다 xe_session table이 너무 크네요 [4] 2009.01.31 by Habile
VINA답답이 특정게시판 글 제목을 진(太)하게 하려면... [3] 2009.01.31 by Habile
사슴483 모듈에서 외부페이지 만들고.. [1] 2009.01.31 by yjnet
chinamakeup 게시판 rewrite mode 사용시 에러 [2] 2009.01.31 by bluehope.myid.net
거부기D 주소록 같은걸 만들수 있나요? [1] 2009.01.31 by 만쓰별(정만)
이하빈744 홈페이지접속 느림 현상 문제 [1] 2009.01.31 by 만쓰별(정만)
사슴483 외부페이지 만들고 글짜깨짐현상 [1] 2009.01.31 by 소백산
xfilechun 갤러리변환시 백지현상 질문입니다. [2] file 2009.01.31 by xfilechun
조훈227 첨부파일 버튼 오류... [3] 2009.01.31 by 자스민아로마
hammers DB이행시 비밀번호 저장에 관해서. [2] 2009.01.31 by hammers
바이블인사이드 관리자가 특정 회원에게 쪽지를 보내려면 어떻게해야하나요? 아무리뒤져봐도 못찾겠네요 [4] 2010.02.04 by 자스민아로마
hammers XE의 비밀번호 암호화작업을 하려고 합니다.  
ㅁㅁㅁ xe 쪽지 기능이요~ [2] 2009.01.31 by 자스민아로마
만쓰별(정만) 인터넷 오래하다보면 창이 하얗게 되고 도구모음등이 안보이고 결국 창을 다 닫고 다시 시작하면 다시 잘되는 등의 현상 해결방법없을까요? [2] 2009.01.31 by 만쓰별(정만)
씨알 ie6과 ie7에서 서로 다른 결과물?? [5] 2009.01.31 by 씨알
당근로봇 2단계 3단계 메뉴??? [3] 2009.01.31 by 만쓰별(정만)
뮤랑이 특정 지정 게시판만 조회시 자동추천되게 하려면?  
만쓰별(정만) 아이프레임 자동 리사이즈 자바스크립트 파이어폭스에서 안되네요.. [3] 2009.01.31 by "오상준"