我有dropdownlist
个list
个项目。如果我选择一个列表项,我想显示一个弹出窗口。同样在弹出窗口中,我必须显示一个超链接,该超链接应该导航到另一个页面。
请给我建议和指导。
由于
答案 0 :(得分:0)
试试这个。在您的页面上添加此脚本
<script type="text/javascript">
function OpenWindow(query, w, h, scroll)
{
var l = (screen.width - w) / 2;
var t = (screen.height - h) / 2;
winprops = 'resizable=0, height=' + h + ',width=' + w + ',top=' + t
+ ',left=' + l + 'w';
if (scroll) winprops += ',scrollbars=1';
var f = window.open(query, "_blank", winprops);
}
function OpenOnchange{
//$(function () {
// $('#DropDownID').click(function () {
OpenWindow('add your page path', 300, 300, true);
//});
//});
}
</script>
从你的dropdownchange事件中调用 OpenOnchange 功能。
<asp:DropDownList ID="MydropDown" runat="server" onchange="OpenOnchange();">
答案 1 :(得分:0)
试试这段代码:
axpx:
<asp:DropDownList ID="ddldropdown" runat="server" OnSelectedIndexChanged="ddldropdown_selected">
<asp:ListItem Text="sometext" Value="value"/>
代码隐藏:
protected void ddldropdown_selected(object sender, EventArgs e)
{
if (ddldropdown.SelectedValue == "value")
{
Page.ClientScript.RegisterStartupScript(this.GetType(), "Call my function", "showpopup();", true);
}
}
脚本:
function showpopup() {
$("#divid").fadeIn('slow');
}
function hidepopup() {
$('#divid').fadeOut("slow");
}
在您的aspx页面中创建一个div,并根据您的要求设计弹出窗口并将id传递给脚本。