我有一个<asp:menu/>
控件和一个隐藏字段。现在我正在使用 jQuery 来更改隐藏字段的值。代码是: -
$(function() {
$(".primaryStaticMenu tr,td").each(function(index) {
$(this).click(function() {
if ($(this).attr("title") != "undefined"
&& $(this).attr("title").length > 0) {
document.getElementById('ctl00_Hidden_Master_Location').value = $(this).attr("title");
alert(document.getElementById('ctl00_Hidden_Master_Location').value);
//return false;
}
});
});
});
获取更新值的服务器端代码是:-
string Get_cng_value = Hidden_Master_Location.Value;
但每次都Hidden_Master_Location.Value
显示。null
谁能告诉我如何从后面的代码中获取隐藏字段的更新值。