2017-10-12 3 views

Répondre

0
//add two ng-models for both textboxes 

//Assign the values to variables 

var txt1 = $scope.textbox1 ; 
var txt2 = $scope.textbox2; 

//swap the values 

$scope.textbox1 = txt2; 
$scope.textbox2 = txt2;