묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
자바스크립트로 셀렉트 메뉴를 꾸몄는데, 링크 거는 방법을 몰르겠어요.
2003.05.21 16:08
그냥 만든게 아니라 자바스크립트를 이용해서 만들려고 해요.
아래처럼 만들었는데.. 링크를 어떻게 걸어야 하는지를 모르겠네요.;
아시는 분은 알려주세요. ^_^
<script src="http://soojin7004.cafe24.com/home/zSelectBox.js"></script>
<script>
var testSelectBox = new Array();
var testOption = new Array();
testSelectBox["id"] = "menu";
testSelectBox["bordercolor"] = "gray";
testSelectBox["bgcolor"] = "white";
testSelectBox["fontsize"] = "8";
testSelectBox["fontface"] = "Verdana";
testSelectBox["width"] = "60";
testSelectBox["height"] = "18";
testSelectBox["focusbgcolor"] = "#E8D8B0";
testSelectBox["bullet"] = "<font color=gray>▼";
testOption[0] = "main,1";
testOption[1] = "he is,2";
testOption[2] = "2 & 4,3";
testOption[3] = "pds,4";
testOption[4] = "free,5";
testOption[5] = "master,6";
testOption["select"] = 0;
printZSelectBox(testSelectBox,testOption);
</script>
redeye님께서 알려주신 방법대로,
testOption[0] = "main,링크주소";
testOption[1] = "he is,링크주소";
testOption[2] = "2 & 4,링크주소";
testOption[3] = "pds,링크주소";
testOption[4] = "free,링크주소";
testOption[5] = "master,링크주소";
이런식으로 주소를 넣고 해봤는데 여전히 안되네요. -_ ㅠ
알려주세요.. -_ ㅠ
아래처럼 만들었는데.. 링크를 어떻게 걸어야 하는지를 모르겠네요.;
아시는 분은 알려주세요. ^_^
<script src="http://soojin7004.cafe24.com/home/zSelectBox.js"></script>
<script>
var testSelectBox = new Array();
var testOption = new Array();
testSelectBox["id"] = "menu";
testSelectBox["bordercolor"] = "gray";
testSelectBox["bgcolor"] = "white";
testSelectBox["fontsize"] = "8";
testSelectBox["fontface"] = "Verdana";
testSelectBox["width"] = "60";
testSelectBox["height"] = "18";
testSelectBox["focusbgcolor"] = "#E8D8B0";
testSelectBox["bullet"] = "<font color=gray>▼";
testOption[0] = "main,1";
testOption[1] = "he is,2";
testOption[2] = "2 & 4,3";
testOption[3] = "pds,4";
testOption[4] = "free,5";
testOption[5] = "master,6";
testOption["select"] = 0;
printZSelectBox(testSelectBox,testOption);
</script>
redeye님께서 알려주신 방법대로,
testOption[0] = "main,링크주소";
testOption[1] = "he is,링크주소";
testOption[2] = "2 & 4,링크주소";
testOption[3] = "pds,링크주소";
testOption[4] = "free,링크주소";
testOption[5] = "master,링크주소";
이런식으로 주소를 넣고 해봤는데 여전히 안되네요. -_ ㅠ
알려주세요.. -_ ㅠ
댓글 2
-
RedEye(rinja)
2003.05.22 11:09
[onChange]=true -
RedEye(rinja)
2003.05.22 11:18
<script src="http://soojin7004.cafe24.com/home/zSelectBox.js"></script>
<script>
var testSelectBox = new Array();
var testOption = new Array();
testSelectBox["id"] = "menu";
testSelectBox["bordercolor"] = "gray";
testSelectBox["bgcolor"] = "white";
testSelectBox["fontsize"] = "8";
testSelectBox["fontface"] = "Verdana";
testSelectBox["width"] = "60";
testSelectBox["height"] = "18";
testSelectBox["focusbgcolor"] = "#E8D8B0";
testSelectBox["bullet"] = "<font color=gray>▼";
testSelectBox["onChange"] = "true";
testOption[0] = "엔지오,http://www.nzeo.com";
testOption[1] = "야후코리아,http://kr.yahoo.com";
testOption[2] = "다음넷,http://daum.net";
testOption[3] = "pds,4";
testOption[4] = "free,5";
testOption[5] = "master,6";
testOption["select"] = 0;
printZSelectBox(testSelectBox,testOption);
</script>