作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在将表单数据发送到登录名/密码,然后想要单击提交按钮,问题在于表单验证要求表单是脏的。我直接分配值,这意味着表单不被认为是脏的和修改的。我尝试过集中注意力,但似乎也不起作用。提交按钮不会出现,因为它未经验证。
document.getElementById("email").focus();
document.getElementById("password").focus();
var e = document.getElementById("email");
e.value = 'currentEmployee@email.com';
var p = document.getElementById("password");
p.value = 'currentEmployee.password';
var osbut = document.getElementById("loginForm"); osbut.submit();
我通过 chrome 扩展注入(inject)了一个脚本,并将其作为 content.js 脚本运行。如有任何帮助,我们将不胜感激。
最佳答案
只需将“在 Controller 表单中”设置为有效即可。例如:
$scope.formName.$valid=true;
关于javascript - 通过 js 使 angular1 表单变脏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46610796/
给定一个域类: class Book { def title Author author } class Author { def name } 给定一个图书实例: Author
我的 Spring 集成测试中有一个特定的类(比如说 MyTest),它在 Spring 组件上使用 PowerMock @PrepareForTest 注释:@PrepareForTest( MyC
我在 Models with Redis 中使用最新的(2016 年 3 月)Yii2 的查询缓存机制: $object = $db->cache(function ($db) use($id) {
我正尝试在我的页面上进行 Angular 验证。 我这里有一个 plunkr,它显示了一个正常的选择,其行为符合您的预期。一开始没有选择,当你选择一个选项然后回到空白选项时,错误显示: http://
我是一名优秀的程序员,十分优秀!