- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
Angularjs 是否有一种简单的方法来验证已在额外指令中实例化的单选组?
验证要求:除非单击单选框之一,否则用户无法提交。
这是我的构建方法:
HTML 文档:
<ng-form name="salutationgroup">
<radiotrigger model="mrms" name="gender" value='1' label="mr" ></radiotrigger>
<radiotrigger model="mrms" name="gender" value='2' label="ms" ></radiotrigger>
</ng-form>
JS文档:
Directives.directive('radiotrigger', function() {
return {
restrict: 'E',
scope: {},
compile: function(element, attrs) {
var templateText = '<li><label><input type="radio" ng-model="' +
attrs.model + '" value="' +
attrs.value + '">' +
attrs.label + '</label></li>';
element.replaceWith(templateText);
}
};
});
非常感谢您的支持。
最佳答案
一种方法:
HTML
<ng-form name="salutationgroup">
<radiotrigger model="mrms" name="gender" value='1' label="mr"></radiotrigger>
<radiotrigger model="mrms" name="gender" value='2' label="ms"></radiotrigger>
<input type="submit" ng-disabled="!enabled"></input>
</ng-form>
指令(遵守“ng-change="enabled=true"'):
Directives.directive('radiotrigger', function() {
return {
restrict: 'E',
scope: {},
compile: function(element, attrs) {
var templateText = '<li><label><input type="radio" ng-model="' +
attrs.model + '" value="' +
attrs.value + '" ng-change="enabled=true">' +
attrs.label + '</label></li>';
element.replaceWith(templateText);
}
};
关于javascript - AngularJs Radiobox 组验证,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25887027/
Angularjs 是否有一种简单的方法来验证已在额外指令中实例化的单选组? 验证要求:除非单击单选框之一,否则用户无法提交。 这是我的构建方法: HTML 文档: J
如何隐藏单选框的内圈以将样式更改为有 Angular 。请看下图。 CSS: input[type="radio"] { width: 166px; height: 32px; posit
我试图创建多个 QRadioButton在不同 QGroupBox .之后我想print()其中QRadioButton在屏幕上按下。 当我按下 QGroupBox 中的第一个按钮时没有问题。但是,在
我有以下代码: myList =['a','b'] rb=wx.RadioBox(self.panel, -1, "Options :", (0, 0), wx.DefaultSize,myList,
我有一个包含多个单选框的表单,我根据用户交互更改其选中状态。 当我加载页面并在不更改任何内容的情况下提交它时,POST 请求会携带选中的单选框的值,但是当我在特定用户行为后使用 JQuery 更改状态
我有一个页面,其中包含一个单选框,其中元素由其不同的数字 ID 标识;我正在恢复应该从另一项工作中点击的元素的 ID,我想强制点击该特定元素: 这是我的 HTML 页面:
我想问一个关于 onChange Radiobox 事件的问题,如果我点击 Domestic,它将跨越新的 radiobox,但我的问题是,我丢失了 JQuery Styling。任何人都知道如何解决
我是一名优秀的程序员,十分优秀!