我有一个文件列表的数据列表
<asp:DataList ID="DLDossierList" runat="server" >
<ItemTemplate>
<div class="doss_hea_seno_2" url="dossier_timeline.aspx">
.
.
<asp:HiddenField ID="hfDocNo" runat="server" Value='<%#("DoCNo") %>' />
.
</div>
</ItemTemplate>
</asp:DataList>
当他单击(div)列表项即文档名称时,我想重定向到另一个页面。为此,我使用以下脚本:
<script>
$(document).ready(function () {
$('.doss_hea_seno_2').click(function () {
window.parent.location = $(this).attr("url");
return false;
});
});
</script>
但现在我想将隐藏字段值作为查询字符串传递。我怎样才能做到这一点?