来自 asp.net 页面加载的 Jquery Tabs 初始化
我如何从子页面的页面加载中的代码隐藏中设置 jquery 选项卡。
我尝试在初始化和设置选项卡然后我从代码后面调用函数来选择选项卡。但它第一次不起作用。它在回发后起作用。
$(function() {
$('#tabsSelection').tabs();
})
function SelectTab() {
$('#tabsSelection').tabs();
$('#tabsSelection').tabs('select', 3);
}
在页面加载时注册脚本的代码隐藏函数
if (!IsPostBack)
{
ScriptManager.RegisterClientScriptBlock(Page, typeof(System.Web.UI.Page), "dsbl", "DisableTab();", true);
}
how can i set jquery tabs from my codebehind in page load of child page.
I tried setting tabs in initialization & then i am calling function from code behind to select the tab. but its not working at the first time. it works after postback.
$(function() {
$('#tabsSelection').tabs();
})
function SelectTab() {
$('#tabsSelection').tabs();
$('#tabsSelection').tabs('select', 3);
}
Code behind function to register script on page load
if (!IsPostBack)
{
ScriptManager.RegisterClientScriptBlock(Page, typeof(System.Web.UI.Page), "dsbl", "DisableTab();", true);
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这只是一个猜测,但尝试在 Page_Init 而不是 Page_Load 中注册 JavaScript,并删除对 IsPostPack 的检查:
This is just a guess, but try registring the JavaScript in Page_Init instead of Page_Load, and remove the check for IsPostPack:
之外:
尝试将DisableTab()函数放置在新代码
Try placing DisableTab() function outside of
New Code: