Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有类似于 Objective-C 的机械化的东西?我想在搜索栏中输入信息,选择一个链接,然后从网页中提取一些信息
您可以在 WebView 的上下文中运行 JavaScript 代码,也可以自己与其 DOM 交互。
您可以将 javascript 注入页面以执行您想要的操作stringByEvaluatingJavaScriptFromString。例如模拟点击,注入:
stringByEvaluatingJavaScriptFromString
getElementById('the_button').click();