ドロップダウンの要素を選択しながら、フォームアクションを変更したい。例: ボタンの場合:
<input type="submit" name="straction" id="straction" value="Submit">
今、ドロップダウンのアクションを設定する方法を教えてください。
助けてくれてありがとう。ジャガディ。
ドロップダウンの要素を選択しながら、フォームアクションを変更したい。例: ボタンの場合:
<input type="submit" name="straction" id="straction" value="Submit">
今、ドロップダウンのアクションを設定する方法を教えてください。
助けてくれてありがとう。ジャガディ。
方法 1:
<html>
<head>
<title>change form action</title>
</head>
<body>
<form id="frm1" action="default.html">
<select id="actions" onchange="document.getElementById('frm1').action=this.value">
<option value=""></option>
<option value="action1.asp">one</option>
<option value="action2.asp">two</option>
<option value="action3.asp">three</option>
</select>
<input type="submit" name="straction" id="straction" value="Submit">
</form>
</body>
</html>
jQuery を使用している場合は、
<select id="actions" onchange="$('#frm1').attr('action',this.value)">