来自 asp.net 页面加载的 Jquery Tabs 初始化

发布于 2024-08-08 05:43:24 字数 494 浏览 4 评论 0原文

我如何从子页面的页面加载中的代码隐藏中设置 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

蹲墙角沉默 2024-08-15 05:43:24

这只是一个猜测,但尝试在 Page_Init 而不是 Page_Load 中注册 JavaScript,并删除对 IsPostPack 的检查:

protected void Page_Init(object sender, EventArgs e)
{
    ScriptManager.RegisterClientScriptBlock(Page, typeof(System.Web.UI.Page),
        "dsbl", "DisableTab();", true);
}

This is just a guess, but try registring the JavaScript in Page_Init instead of Page_Load, and remove the check for IsPostPack:

protected void Page_Init(object sender, EventArgs e)
{
    ScriptManager.RegisterClientScriptBlock(Page, typeof(System.Web.UI.Page),
        "dsbl", "DisableTab();", true);
}
桃扇骨 2024-08-15 05:43:24

之外:

$(function(){...});

尝试将DisableTab()函数放置在新代码

$(function(){
  ...
});

function DisableTab(){
    ...
}

function SelectTab(){
    ...
}

Try placing DisableTab() function outside of

$(function(){...});

New Code:

$(function(){
  ...
});

function DisableTab(){
    ...
}

function SelectTab(){
    ...
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文