我在使用一种方法在值更改时设置表单操作时遇到了一个非常棘手的问题。我有以下代码:
var actions = new Array();
actions[0] = "some-site.html";
actions[1] = "some-other-site.html";
actions[2] = "another-site.html";
etc....
$("select#feld-urlaubsart").change(function () {
if ($("select#fieldname").val() !== "") {
$("form#searchform").attr("action","http://www.mysite.com/" +
actions[$("select#fieldname").val()]);
}
});
另一方面,我的选择如下所示:
<select id="fieldname" name="fieldname">
<option value="0" selected="selected">All</option>
<optgroup label="Golfurlaub mit Greenfees">
<option value="1">Alle Greenfee-Angebote</option>
<option value="2">Top-Angebote</option>
<option value="3">Golfurlaub mit 4 Tage Greenfee</option>
</optgroup>
实际上它确实有效,但我对它不满意,因为我需要依赖 value="1" value="2" 等。
现在我需要使用实际描述作为值来与另一个脚本兼容,我将值传递给在 PHP/JSON 中使用。我需要这样的数据
<option value="All">All</option>
<option value="Option 1">Option 1</option>
etc
如何在不需要使用“1”“2”等数组键的情况下根据选定的 VALUE 更改表单的操作?
感谢您的任何建议。