UITextField 到 UIWebView 表单?
如何设置 UITextField,以便当用户将数据输入到该 UITextField 时,该数据将被输入到 UIWebView 表单中并提交?
谢谢!
How can I set up a UITextField, so that when a user inputs data into that UITextField - that data will be input into the UIWebView form and be submitted?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
嗯,一种选择是,
在 UITextField 中获取输入,然后像这样制作 HTML:
并在 UIWebView 中加载 html 字符串。
hmm, one option could be,
get input in UITextField, and then make HTML like this:
and load html string in UIWebView.