묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
셀렉트박스에서 링크 거는 방법을 모르겠어요.
2003.05.17 15:07
그냥 만든게 아니라 자바스크립트를 이용해서 만들려고 해요.
아래처럼 만들었는데.. 링크를 어떻게 걸어야 하는지를 모르겠네요.;
아시는 분은 알려주세요. ^_^
<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>
아래처럼 만들었는데.. 링크를 어떻게 걸어야 하는지를 모르겠네요.;
아시는 분은 알려주세요. ^_^
<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>
testOption[2] = "2 & 4,3";
testOption[3] = "pds,4";
testOption[4] = "free,5";
testOption[5] = "master,6";
여기에서 아래와같이......
// testOption[번호부여] = "셀렉트목록,링크주소";
testOption[1] = "he is,링크주소1";
testOption[2] = "2 & 4,링크주소2";
testOption[3] = "pds,링크주소3";
testOption[4] = "free,링크주소4";
testOption[5] = "master,링크주소5";