Multiple select Dropdown using Angular with <input> tag
问题 I am building up angular 6 application, in which i am in the need to make a multi select dropdown using <input> text box without using <select> . Html : <form> Select User: <input type="text" name="user" [value]="users"><br> <button type="submit"> Submit </button> </form> Ts : import { Component } from '@angular/core'; @Component({ selector: 'my-app', templateUrl: './app.component.html', styleUrls: [ './app.component.css' ] }) export class AppComponent { users = ['First User', 'Second User',