0
我正在試圖合併3個輸入文本並將數據綁定到另一個輸入文本。如何將文本從文本輸入綁定到使用angularjs的另一個文本輸入
<input type="text" class="textbox" name="country" id="loc_country" value="Gershon" ng-model="location.country"/>
<input type="text" class="textbox" name="city" id="loc_city" ng-model="location.city"/>
<input type="text" class="textbox" name="street" id="loc_street" autocomplete="off" ng-model="location.street"/>
<input type="text" class="textbox" name="result" id="result"/>
這裏需要的第3個輸入與結合
爲什麼第三個是輸入框?你真的需要雙向綁定嗎? – Rebornix
第四個輸入是否嘗試了這個ng-model =「location.address = location.country +''+ location.city +''+ location.street'' –
Rebornix,第四個輸入是google map輸入auto complete,所以對於你的問題,是的:)。 – user1684140