搜索但是,idk我必须搜索的主要关键字是什么..
其他搜索关键字
Javascript add function call with parameters to button
How to execute a JavaScript function when I have its name as a string
问题是:
$("#poi_list").change(function () {
var poi_id = $("#poi_list").val();
alert(poi_id);
poiPath+poi_id+.setMap(map);
});
我的问题是,我如何调用像poiPath5.setMap(map);
这样的函数我从poi_id获得的数字是动态的,数字超过千(这是另一个问题,但现在我只是想解决这个问题)
有什么想法吗?