• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

TypeScript typed-dom.once函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

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



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

示例1: it

 it('hash', function (done) {
   const url = '/base/test/integration/fixture/basic/1.html#a';
   new Pjax({}, { document, router });
   const unbind = once(window, 'pjax:fetch', () => {
     done(true);
   });
   once(document, 'click', ev => {
     assert(!ev.defaultPrevented);
     a.remove();
     setTimeout(() => {
       assert(window.location.hash === '#a');
       once(window, 'hashchange', () => {
         assert(window.location.hash === '');
         setTimeout(() => {
           unbind();
           done();
         }, 100);
       });
       window.history.back();
     }, 100);
   });
   const a = document.createElement('a');
   a.href = url;
   document.body.appendChild(a);
   a.click();
 });
开发者ID:falsandtru,项目名称:pjax-api,代码行数:26,代码来源:click.ts


示例2: click

function click(url: string, callback: (ev: Event) => void): void {
  const el: RouterEventSource.Anchor = document.createElement('a');
  el.href = url;
  void parse('').extract().body.appendChild(el);
  void once(el, 'click', callback);
  void once(el, 'click', ev => void ev.preventDefault());
  void el.click();
}
开发者ID:falsandtru,项目名称:pjax-api,代码行数:8,代码来源:api.ts


示例3: once

 once(window, 'pjax:load', () => {
   pjax.assign(url);
   once(document, 'pjax:ready', () => {
     assert(window.location.pathname === url);
     assert(document.title === 'Title 2');
     assert(document.querySelector('#primary')!.textContent === 'Primary 2');
     done();
   });
 });
开发者ID:falsandtru,项目名称:pjax-api,代码行数:9,代码来源:cache.ts


示例4: it

 it('normal', function () {
   const document = parse('<a href=""></a>').extract();
   assert(new GUI({}, { document, router: (_, ev) => {
     ev.original.preventDefault();
     return true;
   }}));
   once(document, 'a', 'click', ev => {
     assert(ev.defaultPrevented === true);
   });
   document.querySelector('a')!.click();
 });
开发者ID:falsandtru,项目名称:pjax-api,代码行数:11,代码来源:gui.test.ts


示例5: setTimeout

 setTimeout(() => {
   assert(window.location.hash === '#a');
   once(window, 'hashchange', () => {
     assert(window.location.hash === '');
     setTimeout(() => {
       unbind();
       done();
     }, 100);
   });
   window.history.back();
 }, 100);
开发者ID:falsandtru,项目名称:pjax-api,代码行数:11,代码来源:click.ts


示例6: it

 it('basic', function (done) {
   const url = '/base/test/integration/fixture/basic/1.html';
   const document = parse('').extract();
   new Pjax({}, { document, router })
     .replace(url);
   once(document, 'pjax:ready', () => {
     assert(window.location.pathname === url);
     assert(document.title === 'Title 1');
     assert(document.querySelector('#primary')!.textContent === 'Primary 1');
     done();
   });
 });
开发者ID:falsandtru,项目名称:pjax-api,代码行数:12,代码来源:replace.ts


示例7: it

 it('sequence', function (done) {
   const path = '/base/test/integration/fixture/basic/2.html';
   const document = parse('').extract();
   new Pjax({
     fallback: done
   }, { document, router })
     .assign(path);
   let cnt = 0;
   once(window, 'pjax:fetch', ev => {
     assert(ev instanceof Event);
     assert(window.history.scrollRestoration === 'manual');
     assert(cnt === 0 && ++cnt);
   });
   once(window, 'pjax:unload', ev => {
     assert(ev instanceof Event);
     assert(window.history.scrollRestoration === 'auto');
     assert(window.location.pathname !== path);
     assert(cnt === 1 && ++cnt);
   });
   once(document, 'pjax:content', ev => {
     assert(ev instanceof Event);
     assert(window.history.scrollRestoration === 'auto');
     assert(window.location.pathname === path);
     assert(document.title === 'Title 2');
     assert(document.querySelector('header')!.innerHTML === 'Header 2');
     assert(cnt === 2 && ++cnt);
   });
   once(document, 'pjax:ready', ev => {
     assert(ev instanceof Event);
     assert(window.history.scrollRestoration === 'auto');
     assert(cnt === 3 && ++cnt);
   });
   once(window, 'pjax:load', ev => {
     assert(ev instanceof Event);
     assert(window.history.scrollRestoration === 'auto');
     assert(cnt === 4 && ++cnt);
     done();
   });
 });
开发者ID:falsandtru,项目名称:pjax-api,代码行数:39,代码来源:package.ts


示例8: it

 it('basic', function (done) {
   const url1 = '/base/test/integration/fixture/basic/1.html';
   const url2 = '/base/test/integration/fixture/basic/2.html';
   const document = parse('').extract();
   Pjax.assign(url1, { fallback: done }, { document, router });
   Pjax.assign(url2, { fallback: done }, { document, router });
   once(document, 'pjax:ready', () => {
     assert(window.location.pathname === url2);
     assert(document.title === 'Title 2');
     assert(document.querySelector('#primary')!.textContent === 'Primary 2');
     setTimeout(done, 1000);
   });
 });
开发者ID:falsandtru,项目名称:pjax-api,代码行数:13,代码来源:cancel.ts


示例9: it

 it('submit external', function (done) {
   const url = '//external';
   const form = html('form', { action: url }, [
     html('input', { type: 'submit', value: 'submit' }),
   ]);
   document.body.appendChild(form);
   once(document, 'form', 'submit', ev => {
     assert(!validate(new URL(standardize(url)), new Config({}), new RouterEvent(ev)));
     ev.preventDefault();
     form.remove();
     done();
   });
   form.querySelector('input')!.click();
 });
开发者ID:falsandtru,项目名称:pjax-api,代码行数:14,代码来源:router.test.ts



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


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
TypeScript typed-immutable-record.makeTypedFactory函数代码示例发布时间:2022-05-25
下一篇:
TypeScript typed-dom.html函数代码示例发布时间:2022-05-25
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap