将 UISlider 值传递到 stringByEvaluatingJavaScriptFromString 中?

发布于 2024-12-06 16:34:19 字数 326 浏览 0 评论 0原文

我有一个 UISlider,我试图将其值传递到 window.scrollBy 字符串中。基本上,我正在尝试用户可配置的网络内容自动滚动。

实际的滚动正在工作,但我无法使用正常的 %f 和 , 方法将值传递到 JavaScript 中。

[_webView stringByEvaluatingJavaScriptFromString:@"window.scrollBy(0,5);"];

我正在使用上面的内容,并且我希望将“5”替换为滑块的值。

这可以在不需要更多 Java 的情况下完成吗(我绝对不是 JavaScript 程序员!)

I have a UISlider and I'm trying to pass its value into a window.scrollBy string. Basically, I'm attempting user-configurable auto-scrolling of web content.

The actual scrolling is working, but I'm unable to pass a value into the JavaScript by using the normal %f and , method.

[_webView stringByEvaluatingJavaScriptFromString:@"window.scrollBy(0,5);"];

I'm using the above, and I'd like the '5' to be substituted with the value of the slider.

Can this be done without the need for more Java (I'm absolutely not a JavaScript programmer!)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

素手挽清风 2024-12-13 16:34:19

首先,您必须使用 StringWithFormat 构建您的 javascript 代码:

NSString *string = [NSString stringWithFormat:@"window.scrollBy(0,%f);", slider.value];
[_webView stringByEvaluatingJavaScriptFromString:string];

First you have to build your javascript code using StringWithFormat:

NSString *string = [NSString stringWithFormat:@"window.scrollBy(0,%f);", slider.value];
[_webView stringByEvaluatingJavaScriptFromString:string];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文