ちょうど私はjavascriptを使用してng-model隠しフィールドの値を取得したいと思います。javascriptで角度ng-model値を取得
<input type="hidden" name="Latitude" id="sLatitude" ng-model='sLatitude'>
ちょうど私はjavascriptを使用してng-model隠しフィールドの値を取得したいと思います。javascriptで角度ng-model値を取得
<input type="hidden" name="Latitude" id="sLatitude" ng-model='sLatitude'>
次の方法でsLatitude値を取得することができます:あなたが範囲内でその値をしたい場合は、範囲外のその値をしたい場合は、
console.log($scope.sLatitude);
document.getElementById("sLatitude").value
$scope.sLatitude
としてだけアクセスを
あなたは呼び出すことでアクセスすることができます。
angular.element(document.getElementById('sLatitude')).scope().sLatitude
Latitudeの値は、このようなコントローラのJavaスクリプトで書くことができます。 var latotudeValue = $ scope.sLatitude;
Latitudeの値は$ scopeで取得できます。
var latitudeValue = $ scope.sLatitude;
OR
あなたが入力コントロールで値属性を持っているならば、
VAR latitudeValue = document.getElementsById( "sLatitude")の値。
コントローラでは、 '$ scope.sLatitude'を使うことができます。 – Tushar
[これをチェック](http://stackoverflow.com/questions/18446359/angularjs-does-not-send-hidden-field-value) –
・ホープ[この](http://stackoverflow.com/q/21040454/2401386)が役立ちます。 – Blauharley