单击特定按钮时,如何在下拉列表中选择特定名称?

时间:2019-05-30 11:22:05

标签: node.js angular7 angular-reactive-forms

我正在按角度创建“定价计划”页面。因此,当我单击特定计划的按钮时,应从下拉列表中自动选择该特定名称。这怎么可能成角度呢? 我想要的就是单击特定膳食类型的按钮时,应在订购时从下拉菜单中自动选择该膳食类型。

我不知道尝试什么,因为我是Angular的新手。

Price.component.html文件中的

代码: <a class="order-btn" routerLink="/Order">Order Now</a> //for first meal type(trial)

order.component.html文件中的代码: <select class="form-control"> <option value="trial">Trial Meal</option> //this should be automatically selected <option value="diet">Diet Meal</option> <option value="fullmeal">Full Meal</option> </select>

0 个答案:

没有答案