1

我正在使用城市的 css 下拉列表如何将城市的选定值传递给视图中的模型

<span class='selected' id="SelectedCity">select City</span>

所选值在跨度中如何将跨度值传递给模型?

我已经使用$.post了方法,但它第二次点击了 action 方法,它为 city 取值为 null

 $.post("/UserRegistration/CreateEducator", { city: cityTextValue });
4

2 回答 2

1

这很简单。在 Java EE 中,我们通常使用request.getparameter("parameter name")从视图中检索值。您唯一需要做的就是为您的输入、选择或下拉列表命名。

于 2012-12-11T12:07:43.653 回答
0

使用onchange事件Select

像这样写脚本

function GetSelectedItem()
{
    var e = document.getElementById("select");
    var cityTextValue = "The Value is: " + e.options[e.selectedIndex].value + " and text is: " + e.options[e.selectedIndex].text;
    alert(cityTextValue );
}

希望这可以帮助

于 2012-12-11T12:20:03.337 回答