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.
我正在使用可编辑QWebView来实现所见即所得的编辑器。是否有可能获得QWebElement包含插入符号的内容?如何?
QWebView
QWebElement
谢谢。
您可以通过执行命中测试来获取元素:
QWebPage webpage = ui->webView->page(); QPoint point = webpage->inputMethodQuery(Qt::ImMicroFocus).toRect().center(); QWebHitTestResult res = webpage->mainFrame()->hitTestContent(point); QWebElement elm = res.element();