谷歌地图监听器只触发一次?

发布于 2024-11-16 05:52:12 字数 308 浏览 4 评论 0原文

你好,基本上我想要的是,当你单击一个标记时,它会触发一些 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

浮光之海 2024-11-23 05:52:12

您不替换 $('.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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文