当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript TabHandler.getNext函数代码示例

本文整理汇总了TypeScript中@library/dom/TabHandler.getNext函数的典型用法代码示例。如果您正苦于以下问题:TypeScript getNext函数的具体用法?TypeScript getNext怎么用?TypeScript getNext使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了getNext函数的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: it

    it("can handle all options at once", () => {
        document.body.innerHTML = `
        <div>
            <button id="initialFocus"></button>
            <button id="beforeRoot"></button>
            <div id="treeRoot">
                <div id="tree1">
                    <button id="item1"></button>
                    <button id="item2"></button>
                </div>
                <div id="tree2">
                    <button id="itemExcluded"></button>
                    <button id="item3"></button>
                </div>
                <div id="tree3">
                    <button id="item4"></button>
                    <button id="item5"></button>
                </div>
            </div>
        </div>`;

        const tree1 = document.getElementById("tree1")!;
        const tree2 = document.getElementById("tree2")!;
        const item3 = document.getElementById("item3")!;
        const item5 = document.getElementById("item5")!;
        const treeRoot = document.getElementById("treeRoot")!;
        const itemExcluded = document.getElementById("itemExcluded")!;
        const initialFocus = document.getElementById("initialFocus")!;

        initialFocus.focus();
        const handler = new TabHandler(treeRoot, [itemExcluded], [tree1]);
        const nextItem = handler.getNext(item3, true);

        expect(nextItem).eq(item5);
    });
开发者ID:vanilla,项目名称:vanilla,代码行数:35,代码来源:TabHandler.test.ts


注:本文中的@library/dom/TabHandler.getNext函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。