我有这个在 for 循环中调用的函数。
function printResult(name, i) {
$('#list').append("<a href='#' onClick='goto(" + i + ");' class='item'><H1>" + name + "</H1> </a>");
}
a href 标记按照应有的方式附加,但是当我调用 goto 函数时,萤火虫说:'goto is not defined'
但它是!!
这是功能:
function goto(myPoint){
map.setCenter(new google.maps.LatLng(marker[myPoint-1].position.lat(), marker[myPoint-
1].position.lng()));
markerArr[myPoint-1]['infowindow'].open(map, markerArr[myPoint-1]);
}
我不知道为什么找不到该功能。它与在附加的href标签中被调用有关吗?