如何让jQuery选择元素。在他们的身份证里?给定以下类和控制器操作方法:public School{
public Int32 ID { get; set; }
publig String Name { get; set; }
public Address Address { get; set; }}public class Address{
public string Street1 { get; set; }
public string City { get; set; }
public String ZipCode { get; set; }
public String State { get; set; }
public String Country { get; set; }}[Authorize(Roles = "SchoolEditor")][AcceptVerbs(HttpVerbs.Post)]
public SchoolResponse Edit(Int32 id, FormCollection form){
School school = GetSchoolFromRepository(id);
UpdateModel(school, form);
return new SchoolResponse() { School = school };}及以下表格:<form method="post">
School: <%= Html.TextBox("Name") %><br />
Street: <%= Html.TextBox("Address.Street") %><br />
City: <%= Html.TextBox("Address.City") %><br />
Zip Code: <%= Html.TextBox("Address.ZipCode") %><br />
Sate: <select id="Address.State"></select><br />
Country: <select id="Address.Country"></select><br /></form>我可以更新学校的实例和地址成员的学校。这太好了!感谢ASP.NETMVC团队!但是,如何使用jQuery来选择下拉列表以便我可以预先填充它呢?我意识到我可以做这个服务器端,但是页面上还会有其他影响列表的动态元素。下面是我到目前为止所掌握的内容,但由于选择器似乎与ID不匹配,所以它不起作用:$(function() {
$.getJSON("/Location/GetCountryList", null, function(data) {
$("#Address.Country").fillSelect(data);
});
$("#Address.Country").change(function() {
$.getJSON("/Location/GetRegionsForCountry", { country: $(this).val() }, function(data) {
$("#Address.State").fillSelect(data);
});
});});
3 回答
慕侠2389804
TA贡献1719条经验 获得超6个赞
在每个特殊字符之前使用两个反斜杠。
jQuery选择器中的反斜杠转义下一个字符。但是您需要其中的两个,因为反斜杠也是JavaScript字符串的转义字符。第一个反斜杠转义第二个反斜杠,在字符串中给出一个实际反斜杠,然后转义jQuery的下一个字符。
$(function() { $.getJSON("/Location/GetCountryList", null, function(data) { $("#Address\\.Country").fillSelect(data); }); $("#Address\\.Country").change(function() { $.getJSON("/Location/GetRegionsForCountry", { country: $(this).val() }, function(data) { $("#Address\\.State").fillSelect(data); }); });});
添加回答
举报
0/150
提交
取消