angularjs html 获取隐藏域
时间: 2023-10-18 13:21:33 浏览: 142
AngularJs ng-repeat 嵌套如何获取外层$index
你可以使用 AngularJS 的 ng-model 指令来获取隐藏域的值。具体步骤如下:
1. 在 HTML 中添加隐藏域,并设置 ng-model 指令:
```html
<input type="hidden" ng-model="hiddenValue" value="someValue">
```
2. 在控制器中获取隐藏域的值:
```javascript
angular.module('myApp', [])
.controller('myController', function($scope) {
console.log($scope.hiddenValue);
});
```
在上面的示例中,$scope.hiddenValue 变量将包含隐藏域的值。
阅读全文