Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在一个应用程序中工作,其中有一个链接按钮收件箱,当用户单击它时,“default.aspx”页面打开并选择了第一个选项卡,但我要求在收件箱单击的情况下必须选择中间选项卡并显示打开。当用户不点击收件箱“default.aspx”的页面必须选择第一个选项卡。点击事件代码是
protected void btnInbox_Click(object sender, EventArgs e) { Response.Redirect("default.aspx"); }
我认为最好使用 jquery Ui 选项卡来满足您的要求,而不是为其编写服务器脚本。
在您的 aspx 页面的正文标记的开头尝试此操作
$('#nameOftabs').tabs({ selected: index });
其中 index 将是您希望选择的默认选项卡。
希望这可以帮助