gpt4 book ai didi

javascript - 为什么我的范围选择器在我的 Google Maps API3/jQuery 移动应用程序中不起作用?

转载 作者:行者123 更新时间:2023-11-30 13:22:24 26 4
gpt4 key购买 nike

我想根据 jQuery Mobile 范围选择器改变在 Google Maps API3 中制作的圆的半径:

http://goo.gl/T1OHC

但是,每次我更改 slider 时,Chrome Web Developer 都会不断发出错误“ Uncaught Error :属性的无效值:_”。为什么?

最佳答案

我解决了我自己的问题。问题是 Google Maps API3 将 $(this).val() 解析为字符串,而需要一个整数值。为了解决这个问题,我将 $(this).val() 替换为 parseInt($(this).val())

这是我最终的 javascript。

$('input#circleRadius').change(function() {
circle.setRadius(parseInt($(this).val()));
});
});

关于javascript - 为什么我的范围选择器在我的 Google Maps API3/jQuery 移动应用程序中不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9763320/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com