在这里,我有一个代码function findPlaces
,用于搜索框等中的放置对象。
function findPlaces(boxes,searchIndex) {
var request = {
bounds: boxes[searchIndex],
types: ["museum"]
};
这工作正常,但现在......
现在我想用列表/菜单中的值更改这种类型,所以我这样做:
//JS CODE
function findPlaces(boxes,searchIndex) {
var request = {
bounds: boxes[searchIndex],
types: document.getElementById("select").selectedIndex
};
和 HTML 代码:
<label for="select"></label>
<select name="select" id="select">
<option>restaurant</option>
<option>bar</option>
<option>museum</option>
<option>gas_station</option>
</select>
并且此代码不会从列表/菜单中获取值并使用新值运行函数
我该如何解决?