$scope.add=function()
{
//How to retrieve the value of textbox
}
<input type='text'><button ng-click='add()'></button>
ボタンをクリックしたときに、コントローラーでテキストボックスの値を取得し、その値をテーブルに動的に追加するにはどうすればよいですか?
割当 ng-model
に、変数がコントローラーのscope
内で使用できるようにします。
マークアップ
<input type='text' ng-model="myVar"/>
<button type="button" ng-click='add(myVar)'></button>
ng-model を使用してテキストフィールドをバインドします
例:
$scope.items = [];
$scope.newItem = {
title: ''
}
$scope.add = function(item) {
$scope.items.Push(item);
$scope.newItem = { title: '' }; // set newItem to a new object to lose the reference
}
<input type='text' ng-model='newItem.title'><button ng-click='add(newItem)'>Add</button>
<ul>
<li ng-repeat='item in items'>{{ item.title }}</li>
</ul>
textbox
からデータを取得するには、htmlタグでng-model
属性を使用する必要があります。 button
タグでは、ng-click
をパラメータとともに使用できます。これはng-model
です。
<input type='text' ng-model="YourTextData"/>
<button type="button" ng-click='add(YourTextData)'></button>
Jsファイル:
$scope.add=function(YourTextData){
//Now you can set a debugger here and check the data
}
テキストボックスでng-modelを使用して、スコープ変数にバインドします
<input type="text" ng-model="value1">
<input type="text" ng-model="value2">
次に、コントローラー内で変数を宣言し、関数で使用します
$scope.value1 = 0;
$scope.value2 = 0;
$scope.add=function()
{
// Example
console.log($scope.value1 + $scope.value2);
}