-1
我有javasctipt可變如何在視圖中訪問js變量,Html.DropDownList?
var orgCode = "";
$("#orgs").change(function() {
var org = document.getElementById("orgs");
orgCode = org.options[org.selectedIndex].value;
});
我想通過orgCode
我的DropDownList所有的時間,當變量的變化:
@Html.DropDownListFor(model => model.Doctor, new SelectList(_unitOfWork.Doctors.GetByOrganization(orgCode).ToList(), "Code", "Name"), new { id = "docs" })
我orgCode
總是變化的,但我怎麼能訪問它的DropDownList並每次刷新它變化的變化?
在此先感謝!
?什麼是$(「#orgs」)? – Nithesh
請看看這裏:http://stackoverflow.com/questions/4160735/mvc-dropdownlist-capturing-change-event-without-attaching-the-event-handler –
Nithesh,$(「#orgs」)是另一個下拉列表,我從 –