「項目」に表示したい文字を
「値」にリンク先のパスを記述し
登録ボタンを押す
編集する画面をHTMLソースに切り替えて<select>要素に以下の一文を直接追記してください。

onChange='location.href=this.options[this.selectedIndex].value'

要素・属性

またはイベントをクリックして設定する
今のままではオプションメニューは表示されていますが、押しても何も変化しません。 これをジャンプさせるように設定します。

「イベント」 ボタンを押し、「OnChange」 を選択し、下の文をコピーし、スクリプトの所に貼り付け、「登録」 を押してください

location.href=this[this.selectedIndex].value


選択先を別ウィンドで開く <script language="JavaScript"> <!-- function showpage(index){ if (index != '0') newWin=window.open("","new","width=***,height=***"); if (index == '1') newWin.location="http://www.***.net/"; if (index == '2') newWin.location="http://www.***.com/"; if (index == '3') newWin.location="http://www.***.info/"; } //--> </script>
inserted by FC2 system