作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我试图在我的 click
事件中进行两次调用,其中一次调用用于我的组件,另一次用于我的 javascript 函数。下面是我的代码:
事件点击 Angular :
<button type="button" class="btn btn-primary" (click)="Plans(); " [attr.aria-expanded]="!isCollapsed"
aria-controls="collapseBasic">Test</button>
我的组件.ts:
Plans(){
this.limparCombinadoList();
this.codCombinadoPadrao = "dgc" + this.value.toString();
this.service.combinadoTipoRisco(this.codCombinadoPadrao)
.subscribe(
result => {
this.coberturas = result.data;
this.premioFinalCobertura = result.premioFinalCombinado
this.processarDados(this.coberturas,this.premioFinalCobertura)
});
}
我的 Javascript 函数:
<script type="text/javascript">
function renderDiv(){
$.BrunoLeite.init('[data-animation]');
}
</script>
我的javascript文件
hs.onscroll-animation.js
(function($) {
'use strict';
$.BrunoLeite = {
/**
* Base configuration.
*
* @var Object _baseConfig
*/
_baseConfig: {
bounds: -100,
debounce: 50,
...
}}
最佳答案
将 alerta2
函数移动到组件中,并从 (click)
事件中调用它。
alerta2(){
alert("Bruno Leite")
}
(click)="Plans();alerta2();"
关于javascript - Angular 6/Javascript - 在 (nglick) 中调用两种方法。组件和Js,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53780993/
我的问题是我创建了一个弹出窗口来控制元素的宽度和偏移量。 这是为了更好地理解的屏幕截图。 但是,问题是当第一次单击该元素(例如: Description1 )时,会弹出弹出窗口并且四个箭头的 ng-c
我试图在我的 click 事件中进行两次调用,其中一次调用用于我的组件,另一次用于我的 javascript 函数。下面是我的代码: 事件点击 Angular : Test 我的组件.ts: Plan
我是一名优秀的程序员,十分优秀!