将 UISlider 值传递到 stringByEvaluatingJavaScriptFromString 中?
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,您必须使用
StringWithFormat
构建您的 javascript 代码:First you have to build your javascript code using
StringWithFormat
: