我想在选择下拉元素时更改Form操作。 例: 按钮:
<input type="submit" name="straction" id="straction" value="Submit">
现在我想要,如何设置下拉动作?
感谢您的帮助。 jagadi。
答案 0 :(得分:1)
方法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)">