我目前有两个这样的输入
<input id="searchTextField" type="text" name ="start" size="50"><br>
<input id="searchTextField" type="text" name ="start" size="50"><br>
和此javascript
function initialize() {
var input = document.getElementById('searchTextField');
new google.maps.places.Autocomplete(input,options);
}
如何使第二个文本框也使用Google地方信息自动填充功能?我一直无法弄清楚。