如何从QWebView中的输入字段获取值

在Qt中,我在屏幕上有一个QWebView在Web视图中的站点有一个输入字段,我想从输入字段获取value属性并将其存储在QString基本上我问的是如何存储值QString中的输入字段


从QWebView获取QWebFrame(例如ui->webView()->page()->currentFrame()->toHtml(); ),然后使用QwebFrame :: findAllElements或QWebFrame :: findFirstElement。 这会给你一个QWebElement,你可以使用attribute方法来获取value属性。


您应该使用evaluateJavaScript(“this.value”)从属性动态获取calues:http://www.qtforum.org/article/34091/solved-get-html-dom-dynamic-value-via-qtwebview.html# post109395

链接地址: http://www.djcxy.com/p/39313.html

上一篇: How to get the Value from a input field in QWebView

下一篇: QLineEdit: Set cursor location to beginning on focus