我正在显示一个Gridview,其中有一个选项显示更多详细信息。选择此选项后,将打开第二个GridView 首次运行页面时,会有一个隐藏字段设置为false。
<asp:HiddenField ID="hfDetailsShown" runat="server" Value="false" />
当用户点击show more details按钮时,我将hiddenfield设置为true
function ShowAll()
{
$(".ShowHide").each(function () {
if ($(this).html() == "Show") {
document.getElementById('<%= hfDetailsShown.ClientID %>').value = true;
$(this).html("Hide");
$(this).closest("tr").after("<tr><td colspan = '999' style='padding:0px'>" + $(this).next().html() + "</td></tr>");
}
});
}
现在在另一个班级我想检查hfDetailsShown是否为真。如何在另一个类中调用hfDetailsShown?
if (hfDetailsShown == true)
{
//do something
}
答案 0 :(得分:0)
current_path
答案 1 :(得分:0)
我从您的问题中了解到,您要检查hfDetailsShown的值。
var yourRequestedField = document.getElementById(&#39;&lt;%= hfDetailsShown.ClientID%&gt;&#39;)。value;