谷歌地图监听器只触发一次?
你好,基本上我想要的是,当你单击一个标记时,它会触发一些 jQuery 来替换 div 的内容。第一次工作正常,但之后就没有反应了。有什么建议吗?谢谢!
google.maps.event.addListener(marker, 'click', function() {
$('.address').replaceWith(" + '"' + $arrayOfEventNames[i] + '"' + ");
注意:这是使用嵌入式 ruby 代码来获取我想要的“事件名称”。所以这是在 put 语句中。因此需要引号。
Hello so basically what I wanted was so when you clicked a marker, it fired of some jQuery that would replace a div's contents. Works perfectly the first time, but afterwards it won't respond. Any suggestions? Thanks!
google.maps.event.addListener(marker, 'click', function() {
$('.address').replaceWith(" + '"' + $arrayOfEventNames[i] + '"' + ");
Note: This is using embedded ruby code to get the "event name" I want. So this is inside a puts statement. hence the need of the quotes.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不替换 $('.adress') 的内容,而是替换元素本身。这意味着第一次单击后它不再存在,因此无法替换。
K
You do not replace the content of $('.adress') but the element itself. That means that after first click it does not exist anymore so cannot be replaced.
K