2
これは私が非wordpressのサイトに過去に使用したものです:フォームの<select>のフォームで、onchangeイベントハンドラを使用して選択したオプションに直接リンクするにはどうすればよいですか?
function goThere() {
var list = document.forms[0].articles
location = list.options[list.selectedIndex].value
}
関数を呼び出しselect要素:
<form>
<select id="articles" name="articles" onchange="goThere()">
<option value="#" selected>Choose an article</option>
<option value="document1.pdf">Document 1</option>
<option value="document2.pdf">Document 2</option>
<option value="document3.pdf">Document 3</option>
</form>
何これはワードプレスと関係があるのでしょうか? – Bainternet