こんにちは、ユーザーがリンクをクリックしたときに、選択したドロップダウン リストの値を jqueryui ダイアログ ボックスに渡す必要があります。ダイアログボックスを表示できます:
<script>
$(document).ready({
$('a.login').click(function(){
$( "#dialog:ui-dialog" ).dialog( "destroy" );
$( "#product" ).dialog({
height: 140,
modal: true
});
});
</script>
<div class="login-homepage">
<asp:DropDownList ID="DropDownList1" runat="server">
<asp:ListItem Text="product1" Value="product1">Camera</asp:ListItem>
<asp:ListItem Text="product2" Value="product2">DVD</asp:ListItem>
<asp:ListItem Text="product3" Value="product3">LCD</asp:ListItem>
</asp:DropDownList>
<a href="#" id="login">login</a>
<div id="product" title="product-container">
//show the selected dropdownlist
</div>
問題は、ドロップダウンリストの選択した値を渡すことができないことです.ajax jsonを使用して渡そうとしましたが、知識が不足しているため成功しませんでした.
ありがとう