我想獲得沒有任何按鈕操作的angularjs隱藏字段值。我在angularjs新的,如果這個解決方案提供的任何鏈接請發送到我下面如何在沒有任何按鈕操作的情況下獲取Angularjs隱藏字段值?
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.23/angular.min.js"></script>
<div ng-app ng-controller="TestController">
<input type="hidden" name="id" ng-model="id" ng-init="id=12"></input>
</div>
<script>
function TestController($scope) {
alert($scope.id);
}
</script>
觀察什麼沒有奏效? – Sajeetharan
我收到未定義的值。爲什麼? – Rijo