ドキュメントのリストのデータリストがあります
<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) リスト項目、つまり document name をクリックしたときに別のページにリダイレクトしたい。このために、次のスクリプトを使用しています。
<script>
$(document).ready(function () {
$('.doss_hea_seno_2').click(function () {
window.parent.location = $(this).attr("url");
return false;
});
});
</script>
しかし今、隠しフィールドの値をクエリ文字列として渡したいと思っています。どうすればこれを達成できますか?