问题标签 [md-select]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
angularjs - AngularJS Material dropdown options not working
I'm trying to build a form using AngularJS Material and am having problems getting my dropdown options to show up. My HTML is below and my options are stored in an object array on my server script. What am I doing wrong below?
angular - Angular 2材料垫选择以编程方式打开/关闭
有谁知道如何以编程方式打开或关闭 mat-select?根据 api,有打开和关闭的方法,但不知道如何从组件调用这些方法,并且现场没有任何示例显示。
谢谢
angularjs - 用 ng-repeat 重写 ng-options 使其与 md-select 一起使用
我正在尝试将 Bootstrap 选择字段转换为 Angular Material,但是很难让代码与 ng-repeat 而不是 ng-options 一起使用。原始代码如下所示:
新的 AngularJS Material html 代码如下所示:
从 md-select 中选择的项目不会保存在后端表中。我在这里想念什么?我很确定无法使用 ng-options 会导致此问题,但是如何使用 ng-repeat 修复它?
更新:开箱即用的指令代码的其余部分在下面供参考。
angularjs - AngularJS:在md-select multiple中获取选择顺序
当我在 中选择两个选项时<md-select>
,我得到了两个值的数组。我的问题是如何获得选择顺序?
例如在codepen中,当我One
先选择,然后选择Two
时,我得到了['1','2']
. ['2','1']
当我选择第Two
一个然后我有可能得到One
吗?
angularjs - 如何在 md-option 中执行量角器测试
我有角度的代码是
并在量角器中使用了以下代码
而且我总是收到游戏错误
失败:元素不可见
在代码中element(by.model("country")).click()工作正常,但未在弹出窗口中选择 md 选项,请帮忙。
selenium-webdriver - 在 selenium webdriver 中使用 md-select 和 md-option 进行下拉选择
如何在 selenium webdriver 中使用 md-select 和 md-option 选择下拉菜单。
不支持选择类。
angularjs - AngularJS 材料 - 设置父 div
我正在使用 AngularJS 材料 1.1.8。我有一个带有 md-option 的 md-select 元素,它使用 ng-repeat 来填充列表项:
当按下 md-select 时,Angular 会在 body 元素下为 md-options 创建一个新的 div,而不是在 md-select 的实际父 div“my-select-div”下。
如何将 md-option 的 div 的父级设置为“my-select-div”?
谢谢。
angularjs - md-select angular js 更新多个值
这是我的代码,我正在尝试根据日期为楼层和班次选择不同的值。
$scope.shifts = [{shiftid: "a", shift: "A"}, {shiftid: "c", shift: "C"}, {shiftid: "b", shift: "B"}];
$scope.floors = [{id: "f1", floor: "F1"}, {id: "f2", floor: "F2"}, {id: "f3", floor: "F3"}];
[{ "shift": null, "floor": null, "type": typeObj },{ "shift": null, "floor": null, "type": typeObj },{ "shift": null, "floor ": null, "type": typeObj }];
当我有多张卡并且我选择其中一个班次时,所有班次都会更新为相同的值。在此处输入图像描述
我附上一张图,谁能帮忙!!!!!!谢谢你。