Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.7k views
in Technique[技术] by (71.8m points)

html - change dir attribute according to a dynamic variable

I would like to change the dir attribute according to a dynamic variable .

  <input 
                [id]="'element'+i" 
                [(ngModel)]="parent.firstName" 
                class="form-control input-lg" 
                [name]="'parent.firstName'"
                [attr.aria-describedby]="'lblfirstName'+i" 
                pattern="^[a-zA-Z-u0590-u05FF ]+$" 
                #firstName="ngModel" 
                [required]="i == 0"
                [ngModelOptions]="{ updateOn: 'blur' }"
/>

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

If you want to bind the dir attribute, you can add this to the template.html:

<input type="text" [dir]="myDir" />

and in your component.ts:

@Component({
  selector: "my-app",
  templateUrl: "./app.component.html",
  styleUrls: ["./app.component.css"]
})
export class AppComponent {
  myDir = "rtl";
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...