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


TypeScript BrowserDomAdapter.query方法代码示例

本文整理汇总了TypeScript中angular2/platform/browser.BrowserDomAdapter.query方法的典型用法代码示例。如果您正苦于以下问题:TypeScript BrowserDomAdapter.query方法的具体用法?TypeScript BrowserDomAdapter.query怎么用?TypeScript BrowserDomAdapter.query使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在angular2/platform/browser.BrowserDomAdapter的用法示例。


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

示例1: affichageDate

 affichageDate(value) {
     if (value == "limite") {
         var elem: any = this.dom.query('#choixDate');
         this.dom.setAttribute(elem, "style", "display:true;");
     } else {
         var elem: any = this.dom.query('#choixDate');
         this.dom.setAttribute(elem, "style", "display:none;");
     }
 }
开发者ID:PandoreProject,项目名称:Pandora,代码行数:9,代码来源:modificationCompte.component.ts

示例2: constructor

 constructor()
 {
   this._dom = new BrowserDomAdapter();
   this._body = this._dom.query("body");
   this._injector = angular.element(this._body).injector();
   this._globalScope = angular.element(this._body).scope();
 }
开发者ID:mariojunior,项目名称:ng1Bridge,代码行数:7,代码来源:ng1Bridge.ts

示例3: meta

 protected meta (name: string): HTMLElement {
     let meta: HTMLElement;
     meta = DOM.query(`meta[${this.attribute}='${name}]'`);
     if (meta === null) {
         meta = DOM.createElement('meta');
         meta.setAttribute(this.attribute, name);
         this.head.appendChild(meta);
     }
     return meta;
 }
开发者ID:florinvoicuu,项目名称:transactions,代码行数:10,代码来源:meta.ts

示例4: show

	show (type, content) {

		var notification = this._dom.createElement('div');
		notification.innerHTML = content;
		notification.classList.add('df-notification', type);


		var notificationEl = this._dom.query('body').appendChild(notification);

		setTimeout(function(argument) {
			notificationEl.remove();
		}, 4000)
	}
开发者ID:raviurlams,项目名称:angular2App,代码行数:13,代码来源:notification.ts

示例5: afficherMotDePasse

    afficherMotDePasse(id: number) {
        let motDePasse: string = this.utilisateurService.getUserById(id)["mdp"];
        var elem: any = this.dom.query('#affiche' + id);
        if (this.dom.getAttribute(elem, "class") == "no") {
            this.dom.setAttribute(elem, "class", "yes");
            this.dom.setAttribute(this.dom.query("#eyeLogo" + id), "class", "fa fa-eye-slash");
            this.dom.setText(elem, motDePasse);
        } else {
            this.dom.setAttribute(elem, "class", "no");
            this.dom.setAttribute(this.dom.query("#eyeLogo" + id), "class", "fa fa-eye");
            this.dom.setText(elem, "**********");
        }

    }
开发者ID:PandoreProject,项目名称:Pandora,代码行数:14,代码来源:gestionCompte.component.ts

示例6: constructor

 constructor () {
     this.head = DOM.query('head');
 }
开发者ID:florinvoicuu,项目名称:transactions,代码行数:3,代码来源:meta.ts


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