我试图在成功回调该操作后禁用div标记。
请查看我的离子内容
<ion-content padding class="forgot-password">
<div [ngClass]="{active: isOn,disabled: isDisabled}">
<ion-item>
<ion-label floating>Email/Mobile</ion-label>
<ion-input type="text" [(ngModel)]="loginId"></ion-input>
</ion-item> <br><br>
<button class="float-right" (click)="generateOTP(!isOn);">Send OTP</button><br><br><br>
</div>
<br>
<div *ngIf="showRePasswd">
<ion-item>
<ion-label floating>Enter OTP</ion-label>
<ion-input type="text" [(ngModel)]="passwd"></ion-input>
</ion-item> <br><br>
<button class="float-right" (click)="resetPassword();">Send Password</button>
</div>
</ion-content>
这是我的.ts文件
export class ForgotPasswordPage {
public loginId = "";
public passwd = "";
public showRePasswd = false;
isDisabled = false;
isOn = false;
constructor(private navCtrl: NavController, private logger: Logger, private user: Users) {
}
generateOTP(newstate) {
this.logger.info("invoking generateOTP FN");
var _this = this;
this.user.generateOTP(this.loginId, function(result,data){
if(result == '1') {
alert(data);
_this.showRePasswd = !_this.showRePasswd;
_this.isDisabled = true;
_this.isOn = newstate;
}
else {
//this.showRePasswd = this.showRePasswd;
alert(data);
}
})
}
resetPassword() {
this.logger.info("invoking resetPassword FN");
var _this = this;
this.user.resetPassword(this.passwd, function(result,data) {
if(result == '1') {
alert(data);
_this.navCtrl.push(LoginPage);
}
else {
alert(data);
}
})
}
}
我尝试了
[ngClass]
但是在成功回调后我无法禁用div标签。
我也尝试使用[disabled]
但不能正常工作
以下是demo用于禁用div标签,但在我的情况下无法正常工作
我的要求是在成功回调
后禁用我的输入字段和按钮
答案 0 :(得分:18)
您可以添加
这样的属性<div [attr.disabled]="isDisabled ? true : null">
但<div>
不支持disabled
属性。
也许这就是你想要的
<div (click)="isDisabled ? $event.stopPropagation() : myClickHandler($event); isDisabled ? false : null"
[class.isDisabled]="isDisabled"></div>
使用一些自定义CSS,使.isDiabled
看起来已禁用。
创建一个将代码放在那里而不是内联的方法可能会更好。
答案 1 :(得分:2)
您可以在标签 div 中使用 CSS 属性 pointer-events: none;:
final museos = parsedJson.map(museo.fromJson); // it should be List<museo>
答案 2 :(得分:2)
这是在我的 Angular 8 项目中使用的: 首先设置为如下所示的 HTML 文件。 设置为 Div 标签 ngClass=>
<div class="col-md-3" [ngClass]="{disabledNoOfCasesDiv: !isActiveNOofCasesNo}>
<label class="control-label mb-2">No. of Cases Receive</label>
<input type="number" class="form-control" [(ngModel)]="CollectJob.NoOfCases"
placeholder="No. Cases Receive" name="NoCasesReceive">
</div>
然后下一步编写 CSS 以禁用事件:
.disabledNoOfCasesDiv{ pointer-events: none; opacity: 2.0;}
最后:
声明变量并设置为布尔值
isActiveNOofCasesNo: boolean;
然后接下来只需在您想要启用 div 标签或禁用 div 标签的任何地方传递 true/false 值,div 将自动启用或禁用。
this.isActiveNOofCasesNo = true;
this.isActiveNOofCasesNo = false;
谢谢.....快乐学习!...:) angular html css ionic typescript
答案 3 :(得分:0)
无法像窗体控件一样禁用Div元素。您可以在div中禁用表单控件。
提供的示例包含自定义类&#34;已禁用&#34;
styles: [`
.button {
width: 120px;
border: medium solid black;
}
.active {
background-color: red;
}
.disabled {
color: gray;
border: medium solid gray;
}
`]
答案 4 :(得分:0)
您可以使用Angular指令轻松启用/禁用DOM元素:-
创建简单指令- DisableDirective
import { AfterViewInit, Directive, ElementRef, Input, OnChanges, Renderer2 } from '@angular/core';
const DISABLED = 'disabled';
const APP_DISABLED = 'app-disabled';
const TAB_INDEX = 'tabindex';
const TAG_ANCHOR = 'a';
@Directive({
selector: '[appDisable]'
})
export class DisableDirective implements OnChanges, AfterViewInit {
@Input() appDisable = true;
constructor(private eleRef: ElementRef, private renderer: Renderer2) { }
ngOnChanges() {
this.disableElement(this.eleRef.nativeElement);
}
ngAfterViewInit() {
this.disableElement(this.eleRef.nativeElement);
}
private disableElement(element: any) {
if (this.appDisable) {
if (!element.hasAttribute(DISABLED)) {
this.renderer.setAttribute(element, APP_DISABLED, '');
this.renderer.setAttribute(element, DISABLED, 'true');
// disabling anchor tab keyboard event
if (element.tagName.toLowerCase() === TAG_ANCHOR) {
this.renderer.setAttribute(element, TAB_INDEX, '-1');
}
}
} else {
if (element.hasAttribute(APP_DISABLED)) {
if (element.getAttribute('disabled') !== '') {
element.removeAttribute(DISABLED);
}
element.removeAttribute(APP_DISABLED);
if (element.tagName.toLowerCase() === TAG_ANCHOR) {
element.removeAttribute(TAB_INDEX);
}
}
}
if (element.children) {
for (let ele of element.children) {
this.disableElement(ele);
}
}
}
}
现在将此指令与组件div一起使用:-
<div [appDisable]="true">
</div>
注意-不要忘记在AppModule中注册指令。
有关详细说明,请参阅POST。