嗨,我需要将选定的下拉列表值传递给 jqueryui 对话框,当用户单击链接时,例如,如果用户选择产品一并单击链接,则对话框应弹出显示产品 1 已选择,我可以显示对话框:
<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 传递它但没有成功,任何人都可以帮助我或就如何解决这个问题提供任何建议。
谢谢