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.
如何处理在 WebView 中按下 HTML 按钮,该按钮如下所示:
<input type="submit" name="mybutton" id="mybuttonid" value="test" />
WebView 是 Mac 桌面应用程序的一部分。
我不太确定您所说的处理按钮是什么意思,但您的解决方案可能会涉及使用“stringByEvaluatingJavaScriptFromString”。
例如:
[yourWebView stringByEvaluatingJavaScriptFromString:@"document.getElementById('mybuttonid')"];
希望这可以帮助 :)