次のようなドロップダウンリストがあります。
@Html.DropDownList("accounts", (IEnumerable<SelectListItem>)ViewData["Accounts"], "--- All ---")
javascript からドロップダウンの (追加オプションの) 値を取得したい場合、空の文字列を取得します。ddl の値を設定するにはどうすればよいですか。私のスクリプトは次のようになります。
<script type="text/javascript">
$(document).ready(function () {
$("#accounts").change(function () {
var idaccount = $("#accounts > option:selected").attr("value");
$("#ordersTabel>tbody>tr").each(function (index, itemData) {
$this = $(this)
var accountintable = $("#accountKolom", itemData).text();
if (idaccount == "--- All ---") {
$this.show();
}
if (idaccount != $.trim(accountintable)) {
$this.hide();
}
});
});
});
ありがとう、
ヒチャム。